-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.97 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
59
60
{
"name": "any-grid-layout-root",
"version": "0.0.31-Beta",
"type": "module",
"scripts": {
"dev": "npm run clean:dist && vite-run build -y && vite-run types -y && pnpm i && vite-run dev -y",
"dev:select": "npm run clean:dist && vite-run dev",
"build": "npm run clean:dist && vite-run build && vite-run types",
"size": "vite-run size",
"preview": "vite-run preview",
"release": "npm run -s build && git commit -am $npm_package_version && git tag $npm_package_version && git push --tags ",
"clean": "npm run clean:dist && npm run clean:module",
"clean:dist": "pnpm recursive exec -- rimraf dist && rimraf dist",
"clean:module": "pnpm recursive exec -- rimraf node_modules && rimraf node_modules",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"deploy": "bash scripts/deploy-docs.sh"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"is-what": "^4.1.16",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@arco-design/web-vue": "^2.55.0",
"@arco-plugins/vite-vue": "^1.4.5",
"@biggerstar/localhost-certs": "^1.1.10",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.30",
"@vitejs/plugin-vue": "^4.6.2",
"deepmerge": "^4.3.1",
"less": "^4.2.0",
"pinia": "^2.1.7",
"rimraf": "^5.0.5",
"rollup-plugin-bundle-analyzer": "^1.6.6",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.16.7",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.2",
"vite-plugin-copy-dts": "^0.0.5",
"vite-plugin-dts": "^3.7.3",
"vite-run": "^1.6.0",
"vitepress": "1.0.0-rc.10",
"vue": "^3.4.21"
},
"author": "biggerstar",
"license": "GPL-3.0-or-later",
"description": "",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"eslintIgnore": [
"dist"
]
}