forked from Vencord/venmic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 843 Bytes
/
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
{
"name": "@vencord/venmic",
"license": "MIT",
"author": {
"name": "Curve",
"url": "https://github.com/Curve"
},
"version": "1.0.0",
"main": "./lib/index.js",
"types": "./lib/module.d.ts",
"scripts": {
"clean": "cmake-js clean",
"test": "node tests/node/*.js",
"cpcmds": "cmake-js configure --CDvenmic_addon=ON --CDCMAKE_EXPORT_COMPILE_COMMANDS=ON",
"install": "pkg-prebuilds-verify ./lib/options.js || cmake-js compile --CDvenmic_addon=ON"
},
"binary": {
"napi_versions": [
7
]
},
"engines": {
"node": ">=14.15"
},
"dependencies": {
"cmake-js": "^7.2.1",
"node-addon-api": "^7.0.0",
"pkg-prebuilds": "^0.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0"
}
}