-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "virtual-audio-graph",
"version": "1.0.0",
"description": "Library for declaratively manipulating the Web Audio API",
"keywords": [
"api",
"audio",
"audiograph",
"declarative",
"functional",
"graph",
"virtual-audio-graph",
"virtual",
"web"
],
"main": "dist",
"module": "esm",
"repository": {
"type": "git",
"url": "https://github.com/benji6/virtual-audio-graph.git"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "run-p build:*",
"build:cjs": "tsc",
"build:esm": "tsc -m es6 --outDir esm",
"docs": "tsc -p docsSrc && rollup -c docsSrc/rollup.config.mjs && rm -r docsSrc/esm",
"fmt": "prettier -u --write '**/*'",
"test": "run-p test:*",
"test:audit": "npm audit --audit-level=low",
"test:fmt": "prettier --check -u '**/*'",
"test:types": "tsc --noEmit",
"test:unit": "jest"
},
"author": "Ben Hall",
"license": "MIT",
"bugs": {
"url": "https://github.com/benji6/virtual-audio-graph/issues"
},
"homepage": "https://github.com/benji6/virtual-audio-graph",
"devDependencies": {
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"rollup": "^4.2.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.0.3",
"web-audio-test-api": "^0.5.2"
}
}