-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"version": "0.1.0",
"license": "MIT",
"name": "reactivity-store-project",
"author": "MrWangJustToDo",
"engines": {
"node": ">=10"
},
"packageManager": "[email protected]",
"scripts": {
"dev:packages": "ts-node ./scripts/rollupWatch.ts",
"build:packages": "ts-node ./scripts/rollupBuild.ts",
"build:type-gen": "cd packages/r-store && pnpm run type-gen",
"build:type-copy": "ts-node ./scripts/clearTemp.ts",
"build:type": "pnpm run build:type-gen && pnpm run build:type-copy",
"build": "pnpm run build:packages && pnpm run build:type",
"lint": "eslint --cache --ext ts,tsx .",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --ignore-path .prettierignore --write .",
"clean": "pnpm -p -r -c exec rm -rf dist dev .cache",
"purge": "pnpm -p -r -c exec rm -rf node_modules",
"docs:dev": "vitepress dev app",
"docs:build": "vitepress build app",
"docs:preview": "vitepress preview app"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint"
}
},
"devDependencies": {
"@algolia/client-search": "^4.24.0",
"@shikijs/twoslash": "^1.22.2",
"@shikijs/vitepress-twoslash": "^1.22.2",
"@swc/core": "^1.7.40",
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.5",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vue/reactivity": "~3.5.13",
"eslint": "^8.57.0",
"husky": "^8.0.2",
"lodash": "^4.17.21",
"prettier": "^3.3.3",
"project-tool": "https://github.com/MrWangJustToDo/project-tool.git",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactivity-store": "workspaces: *",
"search-insights": "^2.17.0",
"shiki": "^1.22.2",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5.3.3",
"vitepress": "^1.3.4",
"vue": "^3.5.13",
"zustand": "^5.0.0"
}
}