-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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
{
"name": "@example-org/example-repo",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"author": {
"name": "Example Org",
"email": "[email protected]",
"url": "https://github.com/example-org"
},
"license": "MIT",
"keywords": [
"example"
],
"scripts": {
"stub": "pnpm -r --filter=./packages/* --parallel run stub",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"docs:dev": "pnpm -r --filter=./docs run dev",
"docs:build": "pnpm -r --filter=./docs run build",
"docs:preview": "pnpm -r --filter=./docs run preview",
"packages:dev": "pnpm cleanup:dist && pnpm -r --filter=./packages/* run dev",
"packages:stub": "pnpm -r --filter=./packages/* run stub",
"packages:build": "pnpm cleanup:dist && pnpm -r --filter=./packages/* run build",
"packages:publish": "pnpm cleanup:dist && pnpm -r --filter=./packages/* run package:publish",
"cleanup:dist": "rimraf --glob **/dist",
"cleanup:node_modules": "rimraf --glob **/node_modules",
"test": "vitest --coverage",
"test:ui": "vitest --ui --coverage --coverage.enabled=true",
"test:run": "vitest run"
},
"devDependencies": {
"@antfu/eslint-config": "^4.0.0",
"@antfu/ni": "^23.0.0",
"@types/node": "^22.9.3",
"@unocss/cli": "^65.0.0",
"@unocss/eslint-config": "^65.0.0",
"@unocss/eslint-plugin": "^65.0.0",
"@vitejs/plugin-vue": "^5.2.0",
"bumpp": "^10.0.0",
"eslint": "^9.15.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"unbuild": "^3.0.0",
"unocss": "^65.0.0",
"vite": "^6.0.0",
"vite-plugin-inspect": "^10.0.0",
"vitepress": "^1.5.0",
"vitest": "^3.0.0",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10"
},
"workspaces": [
"packages/*",
"docs"
]
}