-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.25 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
{
"name": "@vuelib/monorepo",
"version": "0.4.0",
"private": true,
"packageManager": "[email protected]",
"description": "Vue Components Library",
"author": "Agufa.tech <https://agufa.tech>",
"license": "MIT",
"scripts": {
"dev": "nr docs",
"watch": "nr -r --parallel --filter=./packages/** watch",
"build": "nr -r --parallel --filter=./packages/** build && nr docs:build",
"build:types": "nr -r --parallel --filter=./packages/** build:types",
"clean": "rimraf dist types packages/.*/dist packages/auto-imports.d.ts packages/.vitepress/components.d.ts && nr -r --parallel --filter=./packages/** clean",
"docs": "vitepress dev packages",
"docs:build": "vitepress build packages",
"docs:serve": "vitepress serve packages",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .eslintignore .",
"lintfix": "nr lint --fix",
"typecheck": "nr -r --parallel --filter=./packages/** typecheck",
"typeconfig": "vue-tsc --showConfig",
"test": "nr -r --parallel --filter=./packages/** test",
"coverage": "vitest run --coverage",
"publish:ci": "tsx scripts/publish.ts",
"prepare": "husky install"
},
"devDependencies": {
"@antfu/ni": "^0.16.3",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@iconify/json": "^2.1.75",
"@testing-library/vue": "^6.6.0",
"@types/node": "^18.0.3",
"@unocss/extractor-pug": "^0.44.0",
"@unocss/reset": "^0.44.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/eslint-config-typescript": "^11.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"happy-dom": "^6.0.2",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"tsx": "^3.8.0",
"typescript": "^4.7.4",
"unocss": "^0.44.0",
"unplugin-auto-import": "^0.9.2",
"unplugin-vue-components": "^0.21.1",
"vite": "2.9.13",
"vite-plugin-inspect": "^0.5.1",
"vitepress": "1.0.0-alpha.4",
"vitest": "^0.18.0",
"vue": "^3.2.37",
"vue-tsc": "^0.38.3"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
},
"engines": {
"node": ">=16",
"pnpm": ">=7.5.0"
}
}