forked from rubenOrtz/sange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (47 loc) · 1.17 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
{
"name": "@eliyya/sange",
"version": "1.2.0",
"description": "A Node.js addon built with CMake and node-addon-api",
"main": "index.js",
"author": "David Zeng (https://github.com/davidzeng0)",
"contributors": [
"Eli Maciel (https://github.com/eliyya)",
"Ruben Ortiz (https://github.com/rubenOrtz)",
"David Zeng (https://github.com/davidzeng0)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Node-Estudios/sange.git"
},
"homepage": "https://github.com/Node-Estudios/sange#readme",
"bugs": {
"url": "https://github.com/Node-Estudios/sange/issues"
},
"keywords": [
"node-addon",
"cmake",
"native",
"addon",
"player",
"audio",
"ffmpeg"
],
"dependencies": {
"bindings": "1.5.0",
"node-addon-api": "8.5.0"
},
"scripts": {
"install": "npm run build",
"build": "cmake-js --CDNODE_ADDON_INC $(node -p \"require('node-addon-api').include_dir\")",
"debug": "cmake-js -D --CDNODE_ADDON_INC $(node -p \"require('node-addon-api').include_dir\")",
"clean": "rm -r build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"cmake-js": "7.3.1"
},
"engines": {
"node": ">=22.0.0"
}
}