-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.23 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.23 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "try-as",
"version": "1.0.1",
"author": "Jairus Tanaka",
"repository": {
"type": "git",
"url": "git+https://github.com/JairusSW/try-as.git"
},
"main": "./transform/lib/index.js",
"exports": {
".": "./index.ts",
"./transform": "./transform/lib/index.js",
"./package.json": "./package.json"
},
"devDependencies": {
"@assemblyscript/wasi-shim": "^0.1.0",
"@types/node": "^25.4.0",
"assemblyscript": "^0.28.10",
"assemblyscript-prettier": "^3.0.4",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"bugs": {
"url": "https://github.com/JairusSW/try-as/issues"
},
"contributors": [],
"description": "Exception handling for AssemblyScript",
"homepage": "https://github.com/JairusSW/try-as#readme",
"keywords": [
"assemblyscript",
"exception",
"handling",
"try",
"catch",
"error",
"abort",
"throw",
"result"
],
"license": "MIT",
"files": [
"assembly/index.ts",
"assembly/types/**/*.ts",
"index.d.ts",
"index.ts",
"transform/lib/**/*.js",
"transform/lib/**/*.js.map",
"transform/package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "bash ./run-tests.sh",
"build:test": "rm -rf ./build/ && DEBUG=true WRITE=assembly/test,assembly/foo,assembly/json npx asc assembly/test.ts --transform ./transform -o ./build/test.wasm --textFile ./build/test.wat --optimizeLevel 3 --shrinkLevel 0",
"build:test:tmp": "npx asc assembly/test.tmp.ts -o ./build/test.wasm --textFile ./build/test.wat --optimizeLevel 3 --shrinkLevel 0",
"build:test:wine": "DEBUG=1 NODE_SKIP_PLATFORM_CHECK=1 wine ~/.win-bin/node/node.exe ./node_modules/assemblyscript/bin/asc.js assembly/test.ts --transform ./transform -o ./build/test.wasm --textFile ./build/test.wat --debug",
"test:wasmtime": "wasmtime ./build/test.wasm",
"test:wasmer": "wasmer ./build/test.wasm",
"build:transform": "tsc -p ./transform",
"pack:dry-run": "NPM_CONFIG_CACHE=/tmp/try-as-npm-cache npm pack --dry-run",
"bench:wasmer": "wasmer ./build/bench.wasm --llvm",
"format": "prettier -w ."
},
"type": "module",
"types": "./index.d.ts",
"dependencies": {}
}