-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.89 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
53
54
55
56
57
{
"name": "node-pipewire",
"version": "1.0.16",
"description": "NodeJS native module written in Rust and Typescript to interact with Pipewire",
"main": "build/index.js",
"scripts": {
"build": "tsc && cargo-cp-artifact -nc build/index.node -- cargo build --message-format=json-render-diagnostics",
"build-cross": "tsc && cross build --target $TARGET && cp target/$TARGET/release/libnode_pipewire.so build/index.node",
"build-cross:release": "tsc && cross build --target $TARGET --release && cp target/$TARGET/release/libnode_pipewire.so build/index.node",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install": "node-pre-gyp install --fallback-to-build=false || npm run build-release",
"test": "cargo test",
"package": "node-pre-gyp package",
"upload-binary": "./upload-binaries.sh"
},
"binary": {
"module_name": "index",
"host": "https://github.com/kakxem/node-pipewire/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./build"
},
"author": "Paul Antonio Almasi <paul.antonio.almasi@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"node-pre-gyp-github": "^1.4.4"
},
"dependencies": {
"typescript": "^4.8.4",
"@mapbox/node-pre-gyp": "^1.0.10",
"cargo-cp-artifact": "^0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kakxem/node-pipewire.git"
},
"homepage": "https://github.com/kakxem/node-pipewire#readme",
"keywords": [
"pipewire",
"nodejs"
],
"files": [
"build/*.d.ts",
"build/*.js",
"build/*.js.map",
"src/lib.rs",
"src/pipewire_thread.rs",
"Cargo.toml",
"README.md",
"LICENSE"
]
}