-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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": "javascript-software-synthesizer-classic",
"author": "Michael Kolesidis",
"license": "AGPL-3.0-or-later",
"version": "2.1.0",
"description": "TThe JSS-01C | JavaScript Software Synthesizer Classic is a web app enabling you to make and play music in the browser. It is a software synthesizer implementing a variety of JavaScript frameworks and libraries, such as Tone.js and NexusUI2.",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/michaelkolesidis/javascript-software-synthesizer-classic.git"
},
"keywords": [
"music",
"sound",
"synthesizer",
"sound-processing",
"synth",
"fm-synthesizer",
"fm-synthesis",
"frequency-modulation",
"synthesizers",
"software-synthesizer",
"midi",
"midi-keyboard",
"piano-keyboard",
"sound-synthesis",
"nexusui",
"tonejs",
"web-audio",
"sound-engineering"
],
"bugs": {
"url": "https://github.com/michaelkolesidis/javascript-software-synthesizer-classic/issues"
},
"homepage": "https://github.com/michaelkolesidis/javascript-software-synthesizer-classic",
"scripts": {
"dev": "vite --host",
"start": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview"
},
"directories": {
"doc": "docs",
"test": "test"
},
"devDependencies": {
"eslint": "^8.43.0",
"sass": "^1.63.6",
"typescript": "^5.0.2",
"vite": "^5.0.7"
},
"dependencies": {
"nexusui2": "^1.0.1",
"tone": "^14.7.77",
"webmidi": "^3.1.6"
},
"volta": {
"node": "18.18.2"
}
}