-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 953 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 953 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
38
{
"name": "@hamitzor/sonance.js",
"version": "2.1.0",
"description": "Access audio I/O from Node",
"repository": {
"type": "git",
"url": "git+https://github.com/hamitzor/sonance.js.git"
},
"author": "Hamit Can Zor (thenrerise@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hamitzor/sonance.js/issues"
},
"homepage": "https://github.com/hamitzor/sonance.js#readme",
"engines": {
"node": ">= 18.19.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"tsconfig.json"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch"
},
"dependencies": {
"@hamitzor/rtaudio.js": "2.2.0"
},
"devDependencies": {
"@types/node": "^18.19.0",
"typedoc": "^0.25.6",
"typescript": "^5.3.3"
}
}