-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.85 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
39
40
41
{
"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": "cross-env NODE_OPTIONS=\"--import=./register.js \" node tools/load-module.ts",
"module:spawn": "cross-env NODE_OPTIONS=\"--import=./register.js \" node tools/spawn-module.ts",
"aos:build": "cross-env NODE_OPTIONS=\"--import=./register.js \" node tools/bundle-aos.ts",
"aos:publish": "cross-env NODE_OPTIONS=\"--import=./register.js \" node tools/bundle-aos.ts && node tools/publish-aos.ts",
"aos:load": "cross-env NODE_OPTIONS=\"--import=./register.js \" node tools/bundle-aos.ts && node tools/load-aos.ts",
"aos:spawn": "cross-env NODE_OPTIONS=\"--import=./register.js \" node tools/spawn-aos.ts",
"test": "cross-env NODE_OPTIONS=\"--import=./register.js \" node --test-concurrency 1 --experimental-wasm-memory64 **/*.test.ts"
},
"devDependencies": {
"@permaweb/ao-loader": "^0.0.35",
"@permaweb/aoconnect": "^0.0.56",
"@swc/core": "^1.6.13",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^6.4.0",
"arweave": "^1.15.1",
"cross-env": "^7.0.3",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"**/*.{ts,js,mjs,cjs,md,json}": [
"prettier --write ."
]
}
}