-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.55 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
58
59
60
61
{
"name": "cacophony",
"version": "0.13.6",
"description": "Typescript audio library with caching",
"type": "module",
"main": "dist/cacophony.cjs.js",
"module": "dist/cacophony.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs",
"README.md"
],
"scripts": {
"build": "npm run typecheck && npm run clean&&npm run build:worklets&&vite build&&npm run docs",
"dev": "vite",
"serve": "vite preview",
"typecheck": "tsc --noEmit",
"docs": "typedoc --out docs --exclude *.test.ts src",
"build:worklets": "rollup -c",
"clean": "rimraf build",
"prepublishOnly": "npm run build",
"test": "vitest run",
"ci:test": "vitest run --no-color --run --typecheck"
},
"keywords": [
"audio",
"audio worklets",
"synthesis",
"webaudio"
],
"author": "Christopher Toth",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ctoth/cacophony.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"rimraf": "^5.0.10",
"rollup": "^4.24.2",
"standardized-audio-context-mock": "^9.7.13",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^1.6.0"
},
"vitest": {
"globals": true,
"coverage": true,
"environment": "node"
},
"dependencies": {
"fft.js": "^4.0.4",
"standardized-audio-context": "^25.3.77"
}
}