-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 loc) · 1.62 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "native-sound-mixer",
"version": "3.4.5-win",
"description": "node js native sound mixer module",
"main": "dist/sound-mixer.js",
"scripts": {
"build:ts": "tsc",
"build:bin": "cmake-js rebuild",
"build": "npm run build:ts && npm run build:bin",
"clean": "cmake-js clean && node scripts/clean.js",
"test": "jest",
"docs": "typedoc",
"format:ts": "eslint --fix 'src/**'",
"format:win": "sh ./scripts/format.sh ./cppsrc/win ./cppsrc/.clang-format",
"format:linux": "sh ./scripts/format.sh ./cppsrc/linux ./cppsrc/.clang-format",
"format": "npm run format:ts && npm run format:win && npm run format:linux",
"prepublishOnly": "node scripts/check-bins.js"
},
"os": [
"win32",
"linux"
],
"arch": [
"x86",
"x64"
],
"types": "dist/@types/sound-mixer.d.ts",
"author": "m1dugh",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"cmake-js": "^7.1.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"lodash": "^4.17.21",
"node-addon-api": "^4.2.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.22",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/m1dugh/native-sound-mixer.git"
},
"files": [
"dist"
]
}