forked from unovue/reka-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 KB
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
{
"name": "reka-ui",
"type": "module",
"version": "2.8.2",
"private": true,
"packageManager": "pnpm@10.13.1",
"license": "MIT",
"repository": "unovue/reka-ui",
"workspaces": [
"packages/*"
],
"scripts": {
"story:dev": "pnpm --filter histoire story:dev --open",
"build": "pnpm run --filter reka-ui build && pnpm run --filter plugins build",
"build-only": "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 reka-ui test",
"test-update": "pnpm --filter reka-ui test-update",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"bumpp": "bumpp package.json packages/*/package.json docs/package.json",
"pub:release": "cd packages/core && pnpm pub:release"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"bumpp": "^10.1.1",
"eslint": "^10.0.1",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.20.3",
"typescript": "5.8.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*": "eslint --fix"
}
}