mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-29 08:52:15 +00:00
This basically flips the --noDebug flag to become a --debug flag, so some optimizations, like inlining, aren't skipped by default, which might be unexpected.
31 lines
784 B
JSON
31 lines
784 B
JSON
{
|
|
"name": "@assemblyscript/parse",
|
|
"version": "1.0.0",
|
|
"license": "Apache-2.0",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"asbuild": "asc assembly/index.ts -O3 -b build/index.wasm -t build/index.wat --importMemory --sourceMap --validate",
|
|
"build": "npm run asbuild && webpack --mode production --display-modules",
|
|
"test": "ts-node tests/"
|
|
},
|
|
"files": [
|
|
"package.json",
|
|
"index.d.ts",
|
|
"index.js",
|
|
"index.js.map",
|
|
"src/",
|
|
"README.md"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/webassembly-js-api": "0.0.1",
|
|
"assemblyscript": "AssemblyScript/assemblyscript",
|
|
"ts-loader": "^5.2.1",
|
|
"ts-node": "^6.2.0",
|
|
"typescript": "^3.1.2",
|
|
"webpack": "^4.20.2",
|
|
"webpack-cli": "^3.1.2"
|
|
}
|
|
}
|