-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@zzclub/z-cli",
"version": "2.0.0",
"description": "all-in-one 工具箱,专为提升日常及工作效率而生",
"main": "./dist/index.js",
"type": "module",
"packageManager": "bun@1.3.7",
"author": "aatrox",
"bin": {
"z": "./dist/index.js",
"zz": "./dist/index.js",
"z-cli": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aatrooox/z-cli.git"
},
"keywords": [
"cli",
"zz",
"zzclub",
"bun",
"node",
"sharp",
"image-compression",
"typescript",
"tool"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun run tsc",
"type-check": "bun run tsc --noEmit",
"prepublishOnly": "bun run type-check && bun run build",
"release": "bun run release:patch",
"release:patch": "bunx changelogen@latest --patch --release --push",
"release:minor": "bunx changelogen@latest --minor --release --push",
"release:major": "bunx changelogen@latest --major --release --push",
"release:main": "bunx changelogen@latest -r 1.0.0 --release --push"
},
"engines": {
"node": ">=18.18.0",
"bun": ">=1.0.0"
},
"trustedDependencies": [
"sharp"
],
"license": "MIT",
"dependencies": {
"commander": "^14.0.3",
"consola": "^3.4.2",
"cos-js-sdk-v5": "^1.10.1",
"cos-nodejs-sdk-v5": "^2.15.4",
"sharp": "0.33.0"
},
"devDependencies": {
"@types/node": "^25.0.9",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}