-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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
{
"name": "@justajwolf/node-addon-example",
"version": "1.0.4",
"description": "node-addon-example",
"author": "justajwolf",
"types": "./lib/index.d.ts",
"main": "./lib/index.cjs",
"scripts": {
"recompile": "node-gyp build",
"release": "npm publish",
"test": "node test/test.mjs"
},
"exports": {
"types": "./lib/index.d.ts",
"default": {
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
}
},
"gypfile": true,
"files": [
"lib/**",
"src/**",
"binding.gyp",
"test/**"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justajwolf/node-addon-example.git"
},
"bugs": {
"url": "https://github.com/justajwolf/node-addon-example/issues"
},
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.1.0"
}
}