-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
86 lines (86 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@soybeanjs/cli",
"type": "module",
"version": "1.1.1",
"packageManager": "[email protected]",
"description": "SoybeanJS's command line tools",
"author": {
"name": "Soybean",
"email": "[email protected]",
"url": "https://github.com/soybeanjs"
},
"license": "MIT",
"homepage": "https://github.com/soybeanjs/cli",
"repository": {
"url": "https://github.com/soybeanjs/cli.git"
},
"bugs": {
"url": "https://github.com/soybeanjs/cli/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bin": {
"soybean": "dist/index.js",
"soy": "dist/index.cjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup && pnpm build-pkg",
"build-pkg": "pnpm -r --filter='./packages/*' run build",
"cleanup": "soy cleanup",
"commit": "soy git-commit",
"commit:zh": "soy git-commit -l=zh-cn",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"publish-pkg": "pnpm -r publish --access public",
"release": "soy release -e 'pnpm release-execute'",
"release-execute": "tsx ./scripts/release.ts && pnpm soy changelog",
"stub": "pnpm -r run stub",
"typecheck": "tsc --noEmit --skipLibCheck",
"update-pkg": "soy update-pkg"
},
"dependencies": {
"@soybeanjs/changelog": "0.3.24",
"bumpp": "9.8.1",
"c12": "1.11.2",
"cac": "6.7.14",
"consola": "3.2.3",
"enquirer": "2.4.1",
"execa": "9.3.1",
"kolorist": "1.8.0",
"npm-check-updates": "17.1.11",
"rimraf": "6.0.1"
},
"devDependencies": {
"@soybeanjs/cli": "link:",
"@soybeanjs/eslint-config": "1.4.1",
"@types/node": "22.5.4",
"eslint": "9.14.0",
"eslint-plugin-vue": "9.28.0",
"fast-glob": "3.3.2",
"lint-staged": "15.2.10",
"simple-git-hooks": "2.11.1",
"tsup": "8.2.4",
"tsx": "4.19.0",
"typescript": "5.5.4",
"vue-eslint-parser": "9.4.3"
},
"simple-git-hooks": {
"commit-msg": "pnpm soy git-commit-verify",
"pre-commit": "pnpm typecheck && pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}