forked from soybeanjs/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 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
{
"name": "@soybeanjs/cli",
"version": "0.6.1",
"description": "SoybeanJS's command line tools",
"author": {
"name": "Soybean",
"email": "honghuangdc@gmail.com",
"url": "https://github.com/honghuangdc"
},
"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/"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"soybean": "dist/index.cjs",
"soy": "dist/index.cjs"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm typecheck && unbuild",
"lint": "eslint . --fix",
"format": "soy prettier-write",
"commit": "soy git-commit",
"cleanup": "soy cleanup",
"ncu": "soy ncu",
"publish-pkg": "pnpm -r publish --access public",
"typecheck": "tsc --noEmit",
"release": "soy release && pnpm build && pnpm publish-pkg"
},
"dependencies": {
"@soybeanjs/changelog": "0.0.3",
"bumpp": "9.1.1",
"c12": "1.4.1",
"cac": "6.7.14",
"enquirer": "2.3.6",
"execa": "7.1.1",
"kolorist": "1.8.0",
"lint-staged": "13.2.2",
"minimist": "1.2.8",
"npm-check-updates": "16.10.12",
"rimraf": "5.0.1"
},
"devDependencies": {
"@soybeanjs/cli": "link:",
"@types/node": "20.3.0",
"eslint": "8.42.0",
"eslint-config-soybeanjs": "0.4.9",
"simple-git-hooks": "2.8.1",
"tsx": "3.12.7",
"typescript": "5.1.3",
"unbuild": "1.2.1"
},
"simple-git-hooks": {
"commit-msg": "pnpm soy git-commit-verify",
"pre-commit": "pnpm typecheck && pnpm soy lint-staged"
},
"soybean": {
"useSoybeanToken": true
}
}