-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
51
52
{
"name": "toneforge",
"version": "0.1.0",
"description": "Generate placeholder sound effects instantly so development never stalls waiting for final audio assets.",
"type": "module",
"main": "dist/index.js",
"bin": {
"tf": "bin/dev-cli.js",
"toneforge": "bin/dev-cli.js"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:watch": "vitest",
"start": "./bin/dev-cli.js",
"generate": "./bin/dev-cli.js generate",
"demo": "tsx scripts/demo/run.ts",
"dev:web": "npm run build && npm run build --prefix web && concurrently -k -n backend,vite -c blue,green \"npm start --prefix web\" \"npm run dev --prefix web\"",
"postinstall": "npm link --ignore-scripts --silent 2>/dev/null || echo 'Warning: npm link failed. Run tf via ./bin/dev-cli.js instead.'"
},
"keywords": [
"audio",
"procedural",
"synthesis",
"tone.js",
"sfx"
],
"author": "",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"buffer": "^6.0.3",
"fft.js": "^4.0.4",
"gray-matter": "^4.0.3",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"node-web-audio-api": "^1.0.8",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"tone": "^15.1.22",
"unified": "^11.0.5"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}