-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.35 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.35 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@morehook/monorepo",
"version": "1.10.8",
"private": true,
"description": "基本的Vue合成实用程序的集合",
"license": "MIT",
"repository": "git@github.com:M-cheng-web/morehook.git",
"author": "M-cheng-web <https://github.com/M-cheng-web>",
"scripts": {
"build": "nr update && esno scripts/build.ts",
"build:rollup": "cross-env NODE_OPTIONS=\"--max-old-space-size=6144\" rollup -c",
"build:types": "tsc --emitDeclarationOnly && nr types:fix",
"dev": "nr update && nr docs",
"docs": "vue-demi-switch 3 && vitepress dev packages --open",
"docs:serve": "vitepress serve packages",
"docs:build": "nr update:full && vitepress build packages",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"types:fix": "esno scripts/fix-types.ts",
"update": "nr -C packages/metadata update && esno scripts/update.ts",
"update:full": "nr update && nr build:types",
"clean": "rimraf dist types packages/*/dist",
"watch": "esno scripts/build.ts --watch",
"publish": "esno scripts/publish.ts",
"release": "bumpp --execute=\"npm run release:prepare\" --no-push --no-commit --no-tag",
"release:prepare": "npm run build:types && npm run update"
},
"devDependencies": {
"@algolia/client-search": "^4.14.2",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@morehook/component": "workspace:*",
"@morehook/core": "workspace:*",
"@morehook/metadata": "workspace:*",
"@morehook/utils": "workspace:*",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/fs-extra": "^9.0.13",
"@types/js-cookie": "^3.0.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.2",
"@types/prettier": "^2.7.1",
"@types/web-bluetooth": "^0.0.16",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"acorn-jsx": "^5.3.2",
"autoprefixer": "^10.4.13",
"bumpp": "^8.2.1",
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"esbuild-register": "^3.3.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.6.0",
"export-size": "^0.5.2",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"fuse.js": "^6.6.2",
"gray-matter": "^4.0.3",
"install": "^0.13.0",
"markdown-table": "^3.0.2",
"npm": "^9.1.2",
"ohmyfetch": "^0.4.20",
"postcss": "^8.4.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.2.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^4.10.1",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.55.0",
"simple-git": "^3.14.1",
"typescript": "^4.8.4",
"unplugin-icons": "^0.14.12",
"unplugin-vue-components": "^0.22.8",
"vite": "^3.1.8",
"vitepress": "^1.0.0-alpha.21",
"vitest": "^0.24.3",
"vue-demi": "latest",
"vue-router": "^4.1.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"pnpm": {
"neverBuiltDependencies": [
"electron"
],
"overrides": {
"vue-demi": "0.13.11",
"vite": "^3.1.6"
}
},
"dependencies": {
"vue": "^3.2.41",
"dayjs": "^1.11.6",
"easyqrcodejs": "^4.4.13",
"js-cookie": "^3.0.1"
}
}