-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "nodejs-nur",
"version": "0.2.0",
"description": "NUR Electron addon",
"engines": {
"node": ">=14.0"
},
"engineStrict": true,
"type": "module",
"os": [
"win32"
],
"cpu": [
"x64"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"app": "node main.js",
"get-dependencies": "rimraf dist && tsc -p tsconfig.json && node dist/initLib.js",
"install": "node-gyp rebuild --target=16.0.7 --arch=x64 --dist-url=https://electronjs.org/headers",
"prepublishOnly": "rimraf dist && tsc -p tsconfig.build.json",
"lint": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"util/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/FLevent29/nodejs-nur.git"
},
"files": [
"dist",
"src/addon/include",
"src/addon/NUR",
"binding.gyp",
"NUR-includes",
"NUR-lib"
],
"author": "Fodor Levente <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FLevent29/nodejs-nur/issues"
},
"homepage": "https://github.com/FLevent29/nodejs-nur#readme",
"devDependencies": {
"rimraf": "^3.0.2",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chalk": "^5.0.0",
"fflate": "^0.7.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"got": "^12.0.1",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"dependencies": {
"typed-emitter": "^2.1.0",
"node-gyp": "^8.4.1",
"node-addon-api": "^4.3.0",
"bindings": "^1.5.0"
}
}