Skip to content

Commit db02eb6

Browse files
chore(deps): upgrade nw to 0.88.0-2
1 parent 992857e commit db02eb6

File tree

4 files changed

+37
-18
lines changed

4 files changed

+37
-18
lines changed

package-lock.json

+12-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+23-9
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,46 @@
11
{
22
"name": "@nwutils/cli",
33
"version": "0.0.0",
4-
"description": "Command line interface for building NW.js apps",
5-
"type": "module",
4+
"description": "Command line interface for building NW.js applications",
5+
"keywords": [
6+
"NW.js",
7+
"node-webkit",
8+
"Desktop",
9+
"Application"
10+
],
611
"author": {
712
"name": "Ayushman Chhabra",
813
"url": "https://ayushmanchhabra.com"
914
},
1015
"license": "MIT",
16+
"main": "./src/index.js",
17+
"bin": "./src/cli.js",
18+
"type": "module",
1119
"files": [
12-
"LICENSE"
20+
"LICENSE",
21+
"src"
1322
],
23+
"homepage": "https://github.com/nwutils/nw-cli",
24+
"repository": {
25+
"type": "git",
26+
"url": "git://github.com/nwutils/nw-cli.git"
27+
},
1428
"scripts": {
1529
"postinstall": "base-volta-off-of-nwjs",
1630
"lint": "exit 0",
1731
"test": "vitest run"
1832
},
33+
"devDependencies": {
34+
"selenium-webdriver": "^4.21.0",
35+
"vitest": "^1.6.0"
36+
},
1937
"dependencies": {
2038
"base-volta-off-of-nwjs": "^1.0.5",
2139
"commander": "^12.1.0",
22-
"nw": "0.88.0",
40+
"nw": "0.88.0-2",
2341
"nw-builder": "^4.7.4"
2442
},
2543
"volta": {
26-
"node": "21.1.0"
27-
},
28-
"devDependencies": {
29-
"selenium-webdriver": "^4.21.0",
30-
"vitest": "^1.6.0"
44+
"node": "22.0.0"
3145
}
3246
}

src/cli.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

0 commit comments

Comments
 (0)