-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "flextree-workspace",
"version": "0.0.1",
"private": true,
"description": "A quick tree database access tool library based on Left Right Value Algorithm",
"author": "wxzhang",
"license": "MIT",
"homepage": "https://zhangfisher.github.io/flextree/",
"repository": {
"type": "git",
"url": "git@github.com:zhangfisher/flextree.git"
},
"keywords": [],
"scripts": {
"test": "vitest --pool=threads",
"coverage": "vitest --coverage",
"build": "turbo build --filter=!tests",
"lint": "oxlint -c oxlintrc.json --ignore-path .eslintignore",
"lint:fix": "oxlint -c oxlintrc.json --fix --ignore-path .eslintignore",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"changeset": "changeset",
"release": "changeset version && changeset publish"
},
"dependencies": {
"@lite-tree/vue": "^1.1.4"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@lite-tree/icons": "^1.0.5",
"@rsbuild/core": "1.0.1-beta.5",
"@vitest/coverage-v8": "^2.0.4",
"oxlint": "^0.6.1",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"turbo": "^2.0.9",
"typescript": "^5.5.4",
"vitepress": "^1.3.1",
"vitest": "^2.0.4"
},
"packageManager": "pnpm@9.1.2",
"workspaces": [
"packages/*"
]
}