-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 853 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 853 Bytes
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
{
"name": "assets-builder",
"version": "2.0.0",
"description": "A smart tool for building assets and code generation",
"main": "generate/index.ts",
"private": true,
"scripts": {
"start": "bun run generate/index.ts",
"start-skip-build": "bun run generate/index.ts --skip-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavy-cat/Cat-Activity.git"
},
"author": "WavyCat",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavy-cat/Cat-Activity/issues"
},
"homepage": "https://github.com/wavy-cat/Cat-Activity#readme",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/listr": "^0.14.10",
"commander": "^14.0.3",
"listr": "^0.14.3",
"sharp": "^0.34.5",
"zod": "^4.4.2"
}
}