-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1.26 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
{
"name": "subsembly-framework",
"version": "1.0.0",
"description": "Starter project for Subsembly framework for building Substrate runtimes in AssemblyScript",
"main": "index.js",
"scripts": {
"test": "asc test",
"asbuild:untouched": "asc assembly/index.ts -b build/runtime-untouched.wasm -t build/runtime-untouched.wat --runtime half --memoryBase=16777216 --importMemory --noAssert --use abort=",
"asbuild:optimized": "asc assembly/index.ts -b build/runtime-optimized.wasm -t build/runtime-optimized.wat --runtime half --memoryBase=16777216 --importMemory --noAssert --optimize --use abort=",
"build": "npm install --prefix ./cli && npm run build --prefix ./cli && node ./cli/dist/src/index.js compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limechain/subsembly.git"
},
"keywords": [
"substrate",
"assemblyscript"
],
"author": "Dastanbek Samatov <dastan@limechain.tech>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/limechain/subsembly/issues"
},
"homepage": "https://github.com/limechain/subsembly#readme",
"dependencies": {
"as-bignum": "^0.2.6",
"as-scale-codec": "0.2.3",
"subsembly-core": "^1.1.0"
},
"devDependencies": {
"assemblyscript": "^0.17.1"
}
}