forked from kirklin/boot-vue-ui-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 969 Bytes
/
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
{
"name": "boot-vue-ui-library",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"description": "boot-vue-ui-library Monorepo",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"scripts": {
"dev": "pnpm -C playground dev",
"clean": "pnpm run -r --parallel clean",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"publish": "pnpm publish -r --access public",
"typecheck": "run-p typecheck:*",
"typecheck:playground": "vue-tsc -p tsconfig.playground.json --composite false --noEmit"
},
"devDependencies": {
"@kirklin/eslint-config": "^0.2.7",
"@types/jsdom": "^21.1.0",
"@types/node": "^18.14.6",
"@vue-ui-library/tsconfig": "workspace:*",
"eslint": "^8.35.0",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.2",
"npm-run-all": "^4.1.5",
"pnpm": "^7.29.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2",
"vue-tsc": "^1.2.0"
}
}