-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.25 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
36
37
38
{
"type": "module",
"scripts": {
"module:build": "cd src && ao build && cd .. && yarn module:load",
"module:publish": "cd src && ao publish process.wasm -w ../tools/key.mjson --tag=\"Memory-Limit\" --value=\"1-gb\" --tag=\"Compute-Limit\" --value=\"9000000000000\" && cd ..",
"module:load": "node tools/load-module.mjs",
"module:spawn": "node tools/spawn-module.mjs",
"lint": "luacheck .",
"aos:build": "node tools/bundle-aos.mjs",
"aos:publish": "node tools/bundle-aos.mjs && node tools/publish-aos.mjs",
"aos:load": "node tools/bundle-aos.mjs && node tools/load-aos.mjs",
"aos:spawn": "node tools/spawn-aos.mjs",
"test": "yarn aos:build && node --test --test-concurrency 1 --experimental-wasm-memory64 **/*.test.mjs",
"prepare": "husky"
},
"devDependencies": {
"@ardrive/turbo-sdk": "^1.19.0",
"@permaweb/ao-loader": "^0.0.35",
"@permaweb/aoconnect": "^0.0.55",
"arweave": "^1.15.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdown-toc-gen": "^1.1.0",
"prettier": "^3.3.2"
},
"lint-staged": {
"*.lua": [
"stylua",
"luacheck --config .luacheckrc"
],
"*.{js,mjs}": [
"prettier --write"
],
"**/README.md": [
"markdown-toc-gen insert"
]
}
}