-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "node-dialogs",
"version": "2.0.0",
"description": "An package to send windows dialogs, etc",
"main": "build/",
"scripts": {
"postinstall": "node-gyp configure && node-gyp build && tsc"
},
"binary": {
"module_name": "node-dialogs",
"module_path": "build/Release",
"module": "dialog.node",
"host": "https://nodejs.org/dist",
"remote_path": "./<package-name>/v<version>/",
"package_name": "<package-name>-v<version>-<node_abi>-<platform>-<arch>.tar.gz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hvlxh/node-dialogs.git"
},
"keywords": [
"windows",
"mac",
"unix",
"linux",
"forms",
"dialog",
"form",
"dialogs"
],
"author": "hvlxh",
"license": "MIT",
"bugs": {
"url": "https://github.com/hvlxh/node-dialogs/issues"
},
"homepage": "https://github.com/hvlxh/node-dialogs#readme",
"dependencies": {
"node-addon-api": "^7.0.0",
"node-gyp": "^9.4.0",
"typescript": "^5.1.6"
},
"gypfile": true,
"devDependencies": {
"@types/node": "^20.4.5"
}
}