forked from nwutils/nw-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@aitsys/nw-builder",
"version": "4.5.6",
"description": "Build NW.js desktop applications for MacOS, Windows and Linux.",
"keywords": [
"NW.js",
"node-webkit",
"Desktop",
"Application"
],
"author": {
"name": "Steffen Müller",
"url": "https://www.mllrsohn.com/"
},
"maintainers": [
{
"name": "Ayushman Chhabra",
"url": "https://ayushmanchhabra.com/"
},
{
"name": "Lala Sabathil",
"url": "https://github.com/Lulalaby"
}
],
"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",
"patches",
"src"
],
"homepage": "https://github.com/Aiko-IT-Systems/nw-builder",
"repository": {
"type": "git",
"url": "git+https://github.com/Aiko-IT-Systems/nw-builder.git"
},
"scripts": {
"lint": "eslint src/get.js",
"docs": "jsdoc -d docs ./src/get.js ./src/run.js ./src/bld.js",
"test": "node --test test/get.test.js",
"demo": "cd test/fixture && node demo.js"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^46.9.1",
"jsdoc": "^4.0.2",
"selenium-webdriver": "^4.16.0"
},
"dependencies": {
"cli-progress": "^3.12.0",
"compressing": "^1.10.0",
"glob": "^10.3.10",
"node-gyp": "^9.4.1",
"plist": "^3.1.0",
"rcedit": "^4.0.1",
"tar": "^6.2.0",
"yargs": "^17.7.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2023,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:jsdoc/recommended"
],
"rules": {
"jsdoc/tag-lines": "off",
"jsdoc/check-property-names": "off"
}
}
}