-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "@hagicode/imgbin",
"version": "0.1.0",
"description": "CLI tooling for generating, annotating, and indexing image assets.",
"homepage": "https://github.com/HagiCode-org/imgbin#readme",
"bugs": {
"url": "https://github.com/HagiCode-org/imgbin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HagiCode-org/imgbin.git"
},
"type": "module",
"bin": {
"imgbin": "dist/cli.js"
},
"files": [
"dist",
"prompts",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist .vitest-temp .tmp coverage",
"dev": "tsx src/cli.ts",
"pack:check": "node scripts/verify-package.mjs",
"publish:prepare-dev-version": "node scripts/prepare-dev-version.mjs",
"publish:verify-release": "node scripts/verify-release-version.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"cli",
"image",
"metadata",
"thumbnail"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"commander": "^14.0.1",
"dotenv": "^17.2.3",
"sharp": "^0.34.4",
"yaml": "^2.8.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}