forked from ircam-ismm/node-web-audio-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.35 KB
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
{
"name": "node-web-audio-api",
"version": "0.3.0",
"author": "Benjamin Matuszewski",
"description": "Node.js bindings for web-audio-api-rs using napi-rs",
"main": "index.js",
"repository": "https://github.com/ircam-ismm/node-web-audio-api",
"license": "BSD-3-Clause",
"keywords": [
"audio",
"web audio api",
"rust",
"n-api"
],
"engines": {
"node": ">= 14"
},
"napi": {
"name": "node-web-audio-api"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "npm run generate && napi build --platform --release",
"build:debug": "npm run generate && napi build --platform",
"check": "cargo fmt && cargo clippy",
"generate": "node generator/index.mjs && cargo fmt",
"preversion": "yarn install && npm run generate",
"postversion": "cargo bump $npm_package_version && git commit -am \"v$npm_package_version\""
},
"devDependencies": {
"@sindresorhus/slugify": "^2.1.0",
"chalk": "^5.0.1",
"camelcase": "^6.3.0",
"dotenv": "^16.0.2",
"node-ssh": "^13.0.0",
"octokit": "^2.0.7",
"ping": "^0.4.2",
"template-literal": "^1.0.4",
"waves-masters": "^2.3.1",
"webidl2": "^24.2.0"
},
"dependencies": {
"@napi-rs/cli": "^2.10.0",
"@node-rs/helper": "^1.3.3"
}
}