-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 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
{
"name": "librespot-node",
"version": "1.1.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "cargo-cp-artifact -a cdylib librespot-node dist/build/librespot.node -- cargo build --manifest-path=native/Cargo.toml --message-format=json-render-diagnostics",
"build-debug": "npm run build",
"build-release": "npm run build -- --release",
"install": "npm run build-release && npm run declarations",
"webpack:build": "webpack --config webpack.config.js",
"start": "npm run install && npm run webpack:build && node dist/index.js",
"docs": "typedoc",
"declarations": "tsc --emitDeclarationOnly"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/bindings": "^1.5.1",
"@types/node": "^18.16.2",
"bindings": "^1.5.0",
"cargo-cp-artifact": "^0.1.8",
"ts-loader": "^9.4.2",
"typedoc": "^0.24.6",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"devDependencies": {}
}