-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "@malvineous/opl",
"version": "1.0.0",
"description": "Yamaha OPL2/3 FM synth chip emulator",
"main": "index.js",
"type": "module",
"scripts": {
"build": "emcc --bind -std=c++11 -O3 -I src -o lib/opl3-wasm.mjs -Wno-switch -s SINGLE_FILE -s INVOKE_RUN=0 -s MODULARIZE=1 -s FILESYSTEM=0 -s NODEJS_CATCH_EXIT=0 -s ALLOW_MEMORY_GROWTH=0 -s TOTAL_STACK=8192 -s TOTAL_MEMORY=65536 src/dbopl.cpp src/index.cpp",
"start": "npx -y live-server examples --mount=/opl3/index.js:./index.js --mount=/opl3/lib/opl3-wasm.mjs:./lib/opl3-wasm.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Malvineous/opljs.git"
},
"keywords": [
"adlib",
"sbfmdrv",
"opl2",
"opl3",
"dro",
"sb16"
],
"author": "Adam Nielsen <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Malvineous/opljs/issues"
},
"homepage": "https://github.com/Malvineous/opljs#readme",
"devDependencies": {
},
"directories": {
"lib": "lib"
},
"dependencies": {}
}