-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.11 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
{
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"docs",
"internal/*",
"playground"
],
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm -C ./internal/build build",
"build:theme": "pnpm -C ./packages/theme build",
"build:common": "pnpm build:build-utils",
"build:build-utils": "pnpm -C ./internal/build-utils build && pnpm i",
"docs:dev": "pnpm -C ./docs dev",
"docs:build": "pnpm -C ./docs build",
"play": "pnpm -C ./playground dev",
"bootstrap": "tsx ./scripts/bootstrap.ts",
"create": "tsx ./scripts/create.ts",
"publish": "tsx ./scripts/publish.ts",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"prepare": "simple-git-hooks",
"test": "vitest --ui",
"test:cover": "vitest --coverage"
},
"peerDependencies": {
"vue": "^3.3.11"
},
"devDependencies": {
"@cdx-component/build-utils": "workspace:^",
"@cdx-component/components": "workspace:^",
"@cdx-component/constants": "workspace:^",
"@cdx-component/directives": "workspace:^",
"@cdx-component/hooks": "workspace:^",
"@cdx-component/theme": "workspace:^",
"@cdx-component/utils": "workspace:^",
"@types/eslint": "^9.6.0",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^18.19.10",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/eslint-plugin": "^1.1.20",
"@vitest/ui": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.0",
"@zzxming/eslint-config": "^0.3.4",
"cdx-component": "workspace:^",
"consola": "^3.2.3",
"eslint": "^9.11.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vue": "^9.32.0",
"fs-extra": "^11.2.0",
"globals": "^15.6.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"local-pkg": "^0.5.0",
"prompts": "^2.4.2",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vite": "^5.0.10",
"vitest": "^1.6.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}