forked from soybeanjs/materials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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": "@soybeanjs/materials",
"version": "0.1.6",
"private": true,
"description": "SoybeanJS's component materials, include Vue, React,Solid and Svelte",
"author": {
"name": "SoybeanJS",
"email": "honghuangdc@gmail.com",
"url": "https://github.com/soybeanjs"
},
"license": "MIT",
"homepage": "https://github.com/soybeanjs/materials",
"repository": {
"url": "https://github.com/soybeanjs/materials.git"
},
"bugs": {
"url": "https://github.com/soybeanjs/materials/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"lint": "eslint . --fix",
"commit": "soy git-commit",
"cleanup": "soy cleanup",
"update-pkg": "soy update-pkg",
"init-git": "soy init-git-hooks",
"tsx": "tsx",
"update-version": "bumpp package.json packages/*/package.json",
"publish-pkg": "pnpm -r publish --access public",
"release": "pnpm update-version && pnpm publish-pkg",
"prepare": "pnpm -r run stub",
"sync-pkg": "tsx ./scripts/sync.ts"
},
"devDependencies": {
"@soybeanjs/cli": "^0.1.6",
"bumpp": "^8.2.1",
"eslint": "^8.33.0",
"eslint-config-soybeanjs": "^0.2.3",
"lint-staged": "12.5.0",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.5.0",
"tsx": "^3.12.2",
"typescript": "4.9.5",
"zx": "^7.1.1"
},
"simple-git-hooks": {
"commit-msg": "pnpm soybean git-commit-verify",
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"eslint . --fix"
]
}
}