This repository has been archived by the owner on Jan 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.19 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
71
72
{
"name": "csound-wasm",
"version": "6.15.0-5",
"author": "Hlödver Sigurdsson <[email protected]>",
"license": "LGPL-3.0",
"main": "./dist/libcsound.mjs",
"type": "module",
"keywords": [
"csound",
"csound-wasm",
"wasm",
"webassembly",
"audio",
"webaudio",
"wasi"
],
"scripts": {
"compile": "bash compile.sh",
"lint": "eslint 'src/**/*.js'",
"build": "rollup -c --environment production",
"build:dev": "cross-env BUILD_TARGET=development rollup -c --environment production",
"build:prod": "cross-env BUILD_TARGET=production rollup -c --environment production"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-destructuring": "^7.10.4",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"babel-plugin-add-module-exports": "^1.0.4",
"browser-or-node": "^1.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^22.0.0",
"ololog": "^1.1.162",
"rollup": "^2.30.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-pluginutils": "^2.8.2"
},
"dependencies": {
"@rollup/plugin-strip": "^2.0.0",
"@wasmer/wasi": "^0.12.0",
"@wasmer/wasm-transformer": "^0.12.0",
"@wasmer/wasmfs": "0.12.0",
"buffer": "^5.6.0",
"comlink": "^4.3.0",
"pako": "^1.0.11",
"path-browserify": "^1.0.1",
"ramda": "^0.27.1",
"standardized-audio-context": "^25.1.3",
"text-encoding-shim": "^1.0.5",
"unmute-ios-audio": "^3.1.0",
"web-midi-api": "^2.0.8"
},
"resolutions": {
"@wasmer/wasmfs/memfs": "^3.2.0"
}
}