-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
44
45
46
47
48
49
50
51
52
53
{
"name": "node-rcheevos",
"version": "1.0.1",
"description": "Node.js native bindings for RetroAchievements rcheevos library (hash generation)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"rhash": "bin/rhash.js"
},
"files": [
"lib/**/*",
"bin/**/*",
"prebuilds/**/*",
"binding.gyp",
"!**/*.test.*"
],
"scripts": {
"install": "node-gyp-build",
"build": "node-gyp rebuild",
"prebuild": "prebuildify --napi --strip",
"test": "node --test",
"version:patch": "npm version patch -m \"chore(release): %s\"",
"version:minor": "npm version minor -m \"chore(release): %s\"",
"version:major": "npm version major -m \"chore(release): %s\""
},
"keywords": [
"retroachievements",
"rcheevos",
"hash",
"rom",
"native",
"addon"
],
"author": {
"name": "JZimz",
"email": "jzimz.tv@gmail.com"
},
"license": "MIT",
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"node-gyp": "^10.0.0",
"prebuildify": "^6.0.0"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "git+https://github.com/JZimz/node-rcheevos.git"
}
}