-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.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
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
{
"name": "potjs",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=12.0.0",
"pnpm": ">=6"
},
"scripts": {
"preinstall": "node scripts/preinstall",
"dev": "vite",
"build": "run-s build-popper build-layout build-router build-docs",
"build-popper": "cd packages/vue-popper && npm run build",
"build-layout": "cd packages/vue-layout && npm run build",
"build-router": "cd packages/vue-router && npm run build",
"build-docs": "vite build --mode production",
"build:package": "node scripts/build.js",
"serve": "vite preview",
"release-pkg": "node scripts/release.pkg.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/potjs/pot.git"
},
"author": "Anguer",
"license": "MIT",
"bugs": {
"url": "https://github.com/potjs/pot/issues"
},
"homepage": "https://github.com/potjs/pot#readme",
"dependencies": {
"@potjs/vue-popper": "workspace:*",
"@potjs/vue-layout": "workspace:*",
"@potjs/vue-router": "workspace:*",
"@ant-design/icons-vue": "^6.0.1",
"ant-design-vue": "^2.2.8",
"vue": "^3.2.22",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@microsoft/api-extractor": "^7.18.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vitejs/plugin-vue": "^1.6.1",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/compiler-sfc": "^3.2.6",
"autoprefixer": "^10.3.3",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-define-config": "^1.0.9",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.17.0",
"execa": "^5.1.1",
"less": "^4.1.1",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"prettier": "^2.4.0",
"prompts": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.5",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"vite": "^2.6.14",
"vue-eslint-parser": "^7.11.0",
"vue-tsc": "^0.29.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.js"
}
}