-
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) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 839 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": "@eziapp-org/builder",
"version": "0.0.0-beta.9",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eziapp-org/builder.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"bin": {
"eziapp-builder": "dist/index.js"
},
"scripts": {
"build": "tsc",
"pack": "npm run build && npm pack && shx mv *.tgz packed/builder-latest.tgz",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^24.10.0",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"vite": "^7.2.2"
},
"dependencies": {
"@mongodb-js/zstd": "^7.0.0",
"chalk": "^5.6.2",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5"
}
}