forked from enjikaka/sf2-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.8 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
62
63
64
65
66
67
68
69
70
{
"name": "sf2-player",
"version": "0.0.6",
"description": "SoundFont2 Player",
"type": "module",
"module": "./index.js",
"exports": {
"import": "./index.js"
},
"scripts": {
"server": "http-server ./ -p 8080",
"esbuild": "npx esbuild src/index.js --bundle --sourcemap --minify --platform=browser --format=esm --outfile=pkg/index.js",
"esbuild:watch": "npx esbuild src/index.js --bundle --platform=browser --format=esm --watch --outfile=pkg/index.js",
"dev": "npx npm-run-all --parallel esbuild:watch server",
"build": "rm -rf pkg/ && mkdir pkg && npm run esbuild",
"release": "npm version patch && cp package.json ./pkg/package.json && npm publish ./pkg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enjikaka/sf2-player.git"
},
"keywords": [
"midi",
"WebMidiLink",
"wml",
"sf2",
"soundfont",
"synthesizer",
"webaudio",
"gm",
"xg",
"gs"
],
"author": {
"name": "Jeremy Karlsson",
"url": "https://github.com/enjikaka"
},
"contributors": [
{
"name": "imaya / GREE Inc.",
"url": "https://github.com/gree"
},
{
"name": "Logue",
"email": "[email protected]",
"url": "https://logue.dev"
},
{
"name": "Jeremy Karlsson",
"email": "[email protected]",
"url": "https://github.com/enjikaka"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/enjikaka/sf2-player/issues"
},
"homepage": "https://github.com/enjikaka/sf2-player",
"devDependencies": {
"@pika/plugin-build-web": "^0.8.1",
"@pika/plugin-bundle-web": "^0.8.1",
"@pika/plugin-standard-pkg": "^0.8.1",
"eslint": "^6.8.0",
"eslint-config-tidal": "^1.2.0",
"http-server": "^0.12.1"
},
"dependencies": {
"@logue/reverb": "^0.2.2"
}
}