forked from aza547/noobs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 798 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 798 Bytes
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
{
"name": "noobs",
"version": "0.0.141",
"description": "A native Node.js addon with libobs bindings for Warcraft Recorder.",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "node-gyp rebuild && node dist.js",
"configure-cursor-anysphere": "node-gyp configure -- -f compile_commands_json && copy build\\Release\\compile_commands.json src\\compile_commands.json"
},
"files": [
"index.js",
"index.d.ts",
"binding.gyp",
"bin/64bit/obs.lib",
"src/**/*",
"include/**/*",
"dist/**/*"
],
"author": "Warcraft Recorder LTD",
"license": "LGPL-2.0",
"devDependencies": {
"@types/node": "^24.1.0",
"node-gyp": "^11.2.0"
},
"dependencies": {
"node-addon-api": "^8.4.0"
}
}