-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 859 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 859 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
{
"name": "zeaker",
"version": "2.0.2",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "node ./test/manual-audioplayer-device-test.js",
"install": "node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"build": "rollup -c",
"docs": "node scripts/generate-docs.js"
},
"keywords": [],
"author": "zevinDev",
"license": "MIT",
"description": "Node.js Lossless Audio Player (PortAudio + FFmpeg)",
"dependencies": {
"ffmpeg-static": "^5.2.0",
"ffprobe-static": "^3.1.0",
"node-addon-api": "^8.4.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"jsdoc-to-markdown": "^9.1.1",
"rollup": "^2.79.2"
}
}