-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "node-package-builder",
"version": "1.0.2",
"description": "A cross-platform npm module for building Node.js applications into single executable files",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"node-package-builder": "./bin/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "jsdoc -c jsdoc.conf.json",
"docs:clean": "rm -rf docs",
"type-check": "tsc --noEmit",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types",
"lint:types": "tsc --noEmit --skipLibCheck",
"prepublishOnly": "npm run type-check && npm run docs",
"prepack": "npm run build:types",
"postinstall": "echo \"Thank you for installing node-package-builder! 🚀\""
},
"keywords": [
"nodejs",
"executable",
"sea",
"single-executable",
"cross-platform",
"packaging",
"build"
],
"author": "sw3do <sw3doo@gmail.com> (https://github.com/sw3do)",
"license": "MIT",
"dependencies": {
"commander": "^11.0.0",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"axios": "^1.6.0",
"tar": "^6.2.0",
"yauzl": "^2.10.0",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/tar": "^6.1.0",
"@types/yauzl": "^2.10.0",
"@types/semver": "^7.5.0",
"typescript": "^5.0.0",
"jsdoc": "^4.0.0"
},
"engines": {
"node": ">=18.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sw3do/node-package-builder.git"
},
"bugs": {
"url": "https://github.com/sw3do/node-package-builder/issues"
},
"homepage": "https://github.com/sw3do/node-package-builder#readme"
}