-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "sympathetic-synth",
"version": "1.0.0",
"description": "A synth for all occasions - built with Web Audio API and AI",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"keywords": [
"synth",
"synthesizer",
"web-audio",
"typescript",
"ai"
],
"author": "Stuart Memo <stuartmemo@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/stuartmemo/sympathetic-synth",
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"ai": "^4.0.0",
"next": "^15.0.0",
"qwerty-hancock": "^1.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^20.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^8.56.0",
"eslint-config-next": "^15.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.3.3"
}
}