-
Notifications
You must be signed in to change notification settings - Fork 302
/
package.json
80 lines (80 loc) · 1.97 KB
/
package.json
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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nw-builder",
"version": "4.11.6",
"description": "Build NW.js desktop applications for MacOS, Windows and Linux.",
"keywords": [
"NW.js",
"node-webkit",
"Desktop",
"Application"
],
"author": {
"name": "Steffen Muller",
"url": "https://www.mllrsohn.com/"
},
"maintainers": [
{
"name": "Ayushman Chhabra",
"url": "https://ayushmanchhabra.com/"
}
],
"contributors": [
{
"name": "nw-builder Contributors",
"url": "https://github.com/nwutil/nw-builder/graphs/contributors"
}
],
"license": "MIT",
"main": "./src/index.js",
"bin": {
"nwbuild": "./src/cli.js"
},
"types": "./src/index.d.ts",
"type": "module",
"files": [
"LICENSE",
"src"
],
"homepage": "https://github.com/nwutils/nw-builder",
"repository": {
"type": "git",
"url": "https://github.com/nwutils/nw-builder.git"
},
"scripts": {
"postinstall": "node ./src/postinstall.js",
"lint": "eslint ./src ./tests",
"lint:fix": "eslint --fix ./src ./tests",
"test": "vitest run --coverage",
"test:cov": "vitest --coverage.enabled true",
"demo:bld": "node ./tests/fixtures/demo.js",
"demo:exe": "./tests/fixtures/out/Demo.app/Contents/MacOS/Demo",
"demo:cli": "nwbuild --mode=run --flavor=sdk --glob=false --cacheDir=./node_modules/nw ./tests/fixtures/app"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@vitest/coverage-v8": "^2.1.2",
"base-volta-off-of-nwjs": "^1.0.5",
"eslint": "^9.12.0",
"eslint-plugin-jsdoc": "^50.3.2",
"globals": "^15.11.0",
"nw": "^0.93.0",
"selenium-webdriver": "^4.25.0",
"vitest": "^2.0.4"
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.7.7",
"commander": "^12.1.0",
"glob": "^11.0.0",
"node-gyp": "^10.2.0",
"plist": "^3.1.0",
"resedit": "^2.0.3",
"semver": "^7.6.3",
"tar": "^7.4.3",
"yauzl-promise": "^4.0.0"
},
"volta": {
"node": "22.7.0",
"npm": "10.8.2"
}
}