forked from onu-ui/onu-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 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
{
"name": "@onu-ui/monorepo",
"version": "1.0.13-beta.0",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"scripts": {
"dev": "nr volar:helper && nr stub",
"docs": "npm -C docs run dev",
"docs:build": "npm -C docs run build",
"stub": "pnpm -r --parallel --filter=./packages/* run stub",
"build": "rimraf packages/*/{dist,es,lib} && nr -r -F \"./packages/{preset,utils,components}\" build && nr volar:helper",
"play": "npm -C playground run dev",
"example": "npm -C example run dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp package.json packages/**/package.json",
"deploy": "nr build && nr docs:build",
"test": "vitest",
"test:update": "vitest -u",
"test:coverage": "vitest --coverage",
"volar:helper": "esno scripts/volar-helper"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.0",
"@antfu/ni": "^0.18.8",
"@iconify-json/carbon": "^1.1.9",
"@iconify-json/fluent-emoji": "^1.1.3",
"@iconify-json/logos": "^1.1.16",
"@onu-ui/cli": "workspace:*",
"@onu-ui/components": "workspace:*",
"@onu-ui/docs": "workspace:*",
"@onu-ui/preset": "workspace:*",
"@onu-ui/utils": "workspace:*",
"@types/fs-extra": "^9.0.13",
"@types/node": "18.11.9",
"@unocss/preset-mini": "^0.46.4",
"@unocss/preset-uno": "^0.46.4",
"@vitejs/plugin-vue": "^3.1.0",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vitest/coverage-c8": "^0.25.1",
"@vitest/ui": "0.25.1",
"@vue/test-utils": "^2.1.0",
"@vueuse/core": "^9.3.1",
"bumpp": "^8.2.1",
"eslint": "8.27.0",
"eslint-plugin-import": "^2.26.0",
"esno": "^0.16.3",
"fs-extra": "^10.1.0",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"onu-ui": "workspace:*",
"rimraf": "^3.0.2",
"sass": "^1.54.9",
"simple-git-hooks": "^2.8.0",
"tsup": "^6.3.0",
"typescript": "^4.8.3",
"unbuild": "^0.9.4",
"unocss": "^0.46.4",
"unplugin-auto-import": "0.11.4",
"unplugin-vue-components": "0.22.9",
"vite": "^3.1.3",
"vite-plugin-dts": "^1.6.5",
"vite-plugin-inspect": "^0.7.2",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitepress": "1.0.0-alpha.28",
"vitest": "0.25.1",
"vue": "^3.2.41",
"vue-tsc": "^1.0.8"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
}
}