-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "vuecs",
"private": true,
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"version": "1.0.0",
"workspaces": [
"packages/*",
"examples/*"
],
"keywords": [
"vue",
"components",
"vuecs",
"navigation",
"tier",
"multi-tier",
"level",
"vue-router",
"typescript",
"template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Tada5hi/vuecs.git"
},
"bugs": {
"url": "https://github.com/Tada5hi/vuecs/issues"
},
"homepage": "https://github.com/Tada5hi/vuecs#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-swc": "^0.4.0",
"@rollup/plugin-terser": "^0.4.4",
"@swc/core": "^1.7.36",
"@tada5hi/commitlint-config": "^1.2.2",
"@tada5hi/eslint-config-vue-typescript": "^1.3.12",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.4",
"@vitejs/plugin-vue": "^5.1.4",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"jest": "^29.6.4",
"nx": "^20.0.0",
"rimraf": "^5.0.5",
"rollup": "^4.24.0",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29.2.5",
"typescript": "5.6.2",
"vue-tsc": "^2.0.21",
"workspaces-publish": "^1.4.4"
},
"scripts": {
"commit": "npx git-cz",
"build": "npx nx run-many -t build",
"test": "npx nx run-many -t test",
"lint": "eslint --ext .ts ./packages/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
}
}