generated from project-kardeshev/ao-lua-process-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 976 Bytes
/
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
{
"type": "module",
"scripts": {
"module:build": "cd src && ao build && cd .. && yarn module:load",
"module:publish": "cd src && ao publish process.wasm -w ../tools/key.json --tag=\"Memory-Limit\" --value=\"1-gb\" --tag=\"Compute-Limit\" --value=\"9000000000000\" && cd ..",
"module:load": "node tools/load-module.js",
"module:spawn": "node tools/spawn-module.js",
"aos:build": "node tools/bundle-aos.js",
"aos:publish": "node tools/bundle-aos.js && node tools/publish-aos.js",
"aos:load": "node tools/bundle-aos.js && node tools/load-aos.js",
"aos:spawn": "node tools/spawn-aos.js",
"test": "node --test-concurrency 1 --experimental-wasm-memory64 **/*.test.js",
"evolve": "yarn aos:build && node tools/evolve.js"
},
"devDependencies": {
"@ar.io/sdk": "2.1.0-alpha.6",
"@permaweb/ao-loader": "^0.0.35",
"@permaweb/aoconnect": "^0.0.56",
"arweave": "^1.15.1",
"prettier": "^3.3.2"
},
"dependencies": {}
}