-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 965 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 965 Bytes
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
{
"name": "rescript-tone",
"version": "1.1.0",
"description": "ReScript bindings for Tone.js",
"repository": {
"url": "https://github.com/brnrdog/rescript-tone.git",
"type": "git"
},
"keywords": [
"rescript",
"tonejs",
"tone",
"audio",
"web-audio",
"bindings"
],
"license": "MIT",
"type": "module",
"files": [
"src/**/*.res"
],
"main": "src/Tone.res.js",
"scripts": {
"res:build": "rescript",
"res:dev": "rescript -w",
"test": "rescript && node tests/Tests.res.js",
"vite:dev": "vite",
"vite:build": "vite build",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"rescript": "^12.0.0",
"tone": "^15.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"rescript": "^12.2.0",
"semantic-release": "^25.0.3",
"tone": "^15.1.22",
"vite": "^6.0.0",
"zekr": "^1.8.0"
}
}