-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "root",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.0.2",
"description": "Gravity UI base styling and components",
"author": "blasdfaa",
"bugs": {
"url": "https://github.com/blasdfaa/gravity-vue/issues"
},
"engines": {
"node": ">= 20",
"pnpm": ">= 8",
"yarn": "Please use pnpm instead of yarn to install dependencies",
"npm": "Please use pnpm instead of npm to install dependencies"
},
"scripts": {
"story:dev": "pnpm --filter gravity-vue story:dev --open",
"prepublishOnly": "pnpm run test:package && pnpm run build",
"build": "pnpm run /^build:/",
"build:vue": "pnpm --filter gravity-vue build",
"build:nuxt": "pnpm --filter nuxt build",
"build:icons": "pnpm --filter icons build",
"lint": "eslint . --cache",
"lint:fix": "pnpm run lint --fix",
"release": "bumpp -r && pnpm publish",
"prepare": "simple-git-hooks",
"test:ts": "pnpm --filter './packages/*' -r run typecheck",
"test:package": "publint",
"test:vitest": "pnpm --filter gravity-vue test",
"test": "pnpm run /^test:/"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@antfu/eslint-config": "2.24.1",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"bumpp": "^9.4.0",
"eslint": "9.8.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"esno": "^4.7.0",
"lint-staged": "^15.2.2",
"pnpm": "^9.0.2",
"publint": "^0.2.7",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.5",
"vitest": "^2.0.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*": "eslint --fix"
}
}