-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
{
"name": "celeste",
"type": "module",
"version": "0.4.0",
"private": true,
"packageManager": "pnpm@9.15.3",
"description": "YouCan's design system.",
"author": "YouCan <tech@youcan.shop>",
"keywords": [
"youcan",
"celeste"
],
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"eslint": "eslint . --cache",
"eslint:fix": "eslint . --cache --fix",
"stylelint": "stylelint ./**/*.vue --cache",
"stylelint:fix": "stylelint ./**/*.vue --cache --fix",
"lint": "pnpm run eslint && pnpm run stylelint",
"lint:fix": "pnpm run eslint:fix && pnpm run stylelint:fix",
"prepare": "pnpm simple-git-hooks",
"build": "pnpm -r build",
"bump": "bumpp package.json packages/*/package.json --commit \"chore: release v\" --push --tag",
"release": "pnpm bump && pnpm run build && pnpm -r release",
"storybook": "pnpm --filter celeste-vue run storybook"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.5",
"@unocss/eslint-plugin": "^0.65.4",
"@youcan/lint": "^3.0.6",
"bumpp": "^9.9.3",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"lint-staged": "^15.3.0",
"nr": "^0.1.0",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.12.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"pnpm": {
"overrides": {
"deep-extend@<0.5.1": ">=0.5.1",
"minimist@<0.2.1": ">=0.2.1",
"minimist@<0.2.4": ">=0.2.4"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*": "eslint --fix"
}
}