forked from unovue/radix-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "radix-vue",
"version": "1.8.2",
"private": true,
"packageManager": "pnpm@8.15.4",
"license": "MIT",
"repository": "radix-vue/radix-vue",
"workspaces": [
"packages/*"
],
"scripts": {
"story:dev": "pnpm --filter histoire story:dev",
"build": "rimraf packages/radix-vue/dist && pnpm run --filter radix-vue build && pnpm run --filter plugins build",
"build-only": "rimraf packages/radix-vue/dist && pnpm run -r build-only",
"docs:install": "pnpm --filter docs install",
"docs:dev": "pnpm --filter docs docs:dev",
"docs:build": "pnpm --filter docs docs:build",
"docs:gen": "pnpm --filter docs docs:gen",
"docs:contributors": "pnpm --filter docs docs:contributors",
"prepare": "pnpm simple-git-hooks",
"test": "pnpm --filter radix-vue test",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"bumpp": "bumpp package.json packages/*/package.json docs/package.json",
"pub:release": "cd packages/radix-vue && pnpm pub:release"
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.0",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"bumpp": "^9.2.0",
"eslint": "^9.2.0",
"lint-staged": "^14.0.1",
"pnpm": "^8.15.4",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"pnpm": {
"patchedDependencies": {
"vitepress@1.0.1": "patches/vitepress@1.0.1.patch"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*": "eslint --fix"
}
}