-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 KB
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
{
"private": true,
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.20.0",
"scripts": {
"dev": "pnpm -C play dev",
"build": "pnpm -C packages/components build",
"build:all": "pnpm -r --filter \"./packages/**\" build",
"lint": "eslint",
"type-check": "vue-tsc --noEmit",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:snapshot": "vitest run --update-snapshots",
"test:ci": "vitest run --coverage --reporter=verbose",
"bench": "vitest bench benchmark/",
"test:smoke": "node --import ./scripts/css-loader-hook.mjs scripts/smoke-test.mjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build:all && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/css": "^0.13.0",
"@eslint/js": "^9.38.0",
"@eslint/json": "^0.13.2",
"@iconify/json": "^2.2.403",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vitest/coverage-v8": "^4.0.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.5.1",
"globals": "^16.4.0",
"happy-dom": "^20.0.8",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"sass": "^1.93.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"unplugin-icons": "^22.5.0",
"unplugin-vue-components": "^30.0.0",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4",
"vitepress": "next",
"vitest": "^4.0.4",
"vue": "^3.5.22",
"vue-tsc": "^3.1.2"
},
"lint-staged": {
"*.{js,ts,vue,jsx,tsx}": [
"prettier --write"
],
"*.{css,scss,less,md,json}": [
"prettier --write"
]
},
"dependencies": {
"async-validator": "^4.2.5",
"unplugin-vue-define-options": "^3.1.1"
}
}