Host API stubs (#12)

This commit is contained in:
Ashwin Phatak
2021-12-28 16:08:04 +05:30
committed by nabarun
parent 1421ba5a9b
commit 889e96572d
6 changed files with 139 additions and 18 deletions
+6 -5
View File
@@ -4,6 +4,7 @@
"main": "index.js",
"license": "AGPL-3.0",
"devDependencies": {
"@graphprotocol/graph-ts": "^0.22.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"assemblyscript": "^0.19.16",
@@ -14,17 +15,17 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"typescript": "^4.3.2",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0"
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"scripts": {
"lint": "eslint .",
"build": "tsc",
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild:debug": "asc assembly/index.ts --lib ./node_modules --target debug",
"asbuild:release": "asc assembly/index.ts --lib ./node_modules --target release",
"asbuild": "yarn asbuild:debug && yarn asbuild:release",
"test": "mocha src/**/*.test.ts"
"test": "yarn asbuild:debug && mocha src/**/*.test.ts"
},
"dependencies": {
"@assemblyscript/loader": "^0.19.16"