-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "@nwutils/cli",
"version": "0.0.1",
"description": "Command line interface for building NW.js applications",
"keywords": [
"NW.js",
"node-webkit",
"Desktop",
"Application"
],
"author": {
"name": "Ayushman Chhabra",
"url": "https://ayushmanchhabra.com"
},
"license": "MIT",
"main": "./src/index.js",
"bin": "./src/cli.js",
"type": "module",
"files": [
"LICENSE",
"src"
],
"homepage": "https://github.com/nwutils/nw-cli",
"repository": {
"type": "git",
"url": "git://github.com/nwutils/nw-cli.git"
},
"scripts": {
"postinstall": "base-volta-off-of-nwjs",
"lint": "exit 0",
"test": "vitest run",
"dev": "nw ./tests/fixtures/custom"
},
"devDependencies": {
"@types/chrome": "^0.0.284",
"@types/node": "^22.9.3",
"@types/nw.js": "^0.92.0",
"@types/selenium-webdriver": "^4.1.27",
"selenium-webdriver": "^4.26.0",
"vitest": "^2.1.5"
},
"dependencies": {
"base-volta-off-of-nwjs": "^1.0.5",
"commander": "^12.1.0",
"nw": "^0.93.0",
"nw-builder": "^4.13.1"
},
"volta": {
"node": "22.2.0"
}
}