forked from m1dugh/native-sound-mixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 993 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
36
37
38
39
40
{
"name": "native-sound-mixer",
"version": "3.0.4",
"description": "node js native sound mixer module",
"main": "./dist/sound-mixer.js",
"type": "commonjs",
"gypfile": true,
"scripts": {
"build:ts": "tsc",
"build:bin": "node-gyp rebuild",
"build": "npm run build:bin && npm run build:ts",
"clean": "node-gyp clean && node scripts/clean.js",
"test": "jest",
"prepublishOnly": "npm run build && node scripts/prepublish.js"
},
"os": [
"win32"
],
"types": "dist/@types/sound-mixer.d.ts",
"author": "romlm",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"ts-jest": "^26.5.5"
},
"dependencies": {
"lodash": "^4.17.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.41",
"node-addon-api": "^3.0.2",
"node-gyp": "^7.1.2",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/romlm/native-sound-mixer.git"
},
"files": ["dist"]
}