-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.15 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
{
"name": "@devcycle/assemblyscript-json",
"version": "2.0.0",
"description": "Patched version of near/assemblyscript-json to remove template literals.",
"types": "assembly/index.ts",
"scripts": {
"asbuild:untouched": "asc assembly/index.ts -b build/untouched.wasm -t build/untouched.wat --sourceMap --validate --debug",
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --sourceMap --validate --optimize",
"asbuild": "yarn asbuild:untouched && yarn asbuild:optimized",
"lint": "eslint --max-warnings 0 --ext ts \"assembly/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"docs": "typedoc --plugin typedoc-plugin-markdown --out temp-docs --tsconfig assembly/tsconfig.json --exclude \"node_modules/**/*\" --readme none assembly/index.ts",
"docs:deploy": "cp -r temp-docs/* docs",
"test": "asp"
},
"devDependencies": {
"@as-pect/cli": "^6.2.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"assemblyscript": "^0.19.5",
"eslint": "^8.53.0",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.2.2"
}
}