-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 893 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 893 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
32
33
34
35
36
37
{
"name": "baresip-node",
"version": "0.0.5",
"private": true,
"description": "Node-API addon embedding BareSIP.",
"main": "lib/index.js",
"license": "BSD 3-Clause",
"scripts": {
"build": "cmake-js build",
"rebuild": "cmake-js rebuild",
"rebuild:electron": "node examples/electron/scripts/rebuild_electron.js",
"demo:electron": "npm --prefix examples/electron install && npm --prefix examples/electron start",
"example:electron": "npm --prefix examples/electron install && npm --prefix examples/electron start"
},
"devDependencies": {
"@types/node": "^22.3.0",
"cmake-js": "^7.3.0",
"node-addon-api": "^8.5.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"files": [
"lib/**",
"prebuilt/**",
"README.md",
"LICENSE"
]
}