-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.79 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "audioflow-studio",
"version": "1.0.0",
"description": "🎵 A visual audio synthesizer built with React Flow and Web Audio API. Create, connect, and manipulate audio nodes in real-time with an intuitive drag-and-drop interface.",
"type": "module",
"keywords": [
"audio",
"synthesizer",
"web-audio-api",
"react",
"react-flow",
"music",
"sound",
"visual-programming",
"node-based",
"effects",
"oscillator",
"flanger",
"chorus",
"phaser",
"waveform",
"real-time",
"interactive",
"creative-coding",
"music-production",
"audio-effects"
],
"author": {
"name": "Poojan Goyani",
"email": "poojangoyani@gmail.com",
"url": "https://github.com/poojan38380"
},
"license": "MIT",
"homepage": "https://github.com/Poojan38380/AudioFlow-Studio#readme",
"repository": {
"type": "git",
"url": "https://github.com/Poojan38380/AudioFlow-Studio.git"
},
"bugs": {
"url": "https://github.com/Poojan38380/AudioFlow-Studio/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@xyflow/react": "^12.6.4",
"nanoid": "^5.1.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^2.2.1",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"vite": "^6.3.5"
}
}