You've already forked SpaghettiKart
mirror of
https://github.com/izzy2lost/SpaghettiKart.git
synced 2026-03-26 16:57:37 -07:00
9cf1f9e1d7
* start add wasm integration * some test * some improvement * try more language * expend try with python * update * half working python * improve and extend test * get py2wasm work but not so well * convert to use in cpp * start prepare multimodule * improve a little by using cpp (but still not great) * Update wasm.cpp * try ocaml * add a working example of python with a not complete function * remove type to be even more curse * start add a proper mod loader * allow mod to communicate between * example of hook --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
26 lines
623 B
JSON
26 lines
623 B
JSON
{
|
|
"name": "asc",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "node tests",
|
|
"asbuild:debug": "asc assembly/index.ts --target debug",
|
|
"asbuild:release": "asc assembly/index.ts --target release",
|
|
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
|
|
"start": "npx serve ."
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"@assemblyscript/wasi-shim": "^0.1.0",
|
|
"assemblyscript": "^0.27.29"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./build/release.js",
|
|
"types": "./build/release.d.ts"
|
|
}
|
|
}
|
|
} |