-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.54 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
{
"name": "fass",
"version": "0.1.0",
"author": "Jairus Tanaka",
"description": "A blindingly fast schema-driven serialization format",
"types": "assembly/index.ts",
"main": "transform/lib/index.js",
"homepage": "https://github.com/JairusSW/fass#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JairusSW/fass.git"
},
"bugs": {
"url": "https://github.com/JairusSW/fass/issues"
},
"scripts": {
"test": "bash ./run-tests.sh",
"bench:as": "bash ./run-bench.as.sh",
"bench:js": "bash ./run-bench.js.sh",
"build:test": "rm -rf ./build/ && DEBUG=true asc assembly/test.ts --transform json-as/transform --transform ./transform -o ./build/test.wasm --textFile ./build/test.wat --debug --config ./node_modules/@assemblyscript/wasi-shim/asconfig.json",
"test:wasmtime": "wasmtime ./build/test.wasm",
"test:wasmer": "wasmer ./build/test.wasm",
"build:transform": "tsc -p ./transform",
"bench:wasmer": "wasmer ./build/bench.wasm --llvm",
"prettier": "prettier -w ."
},
"devDependencies": {
"@assemblyscript/wasi-shim": "^0.1.0",
"@types/node": "^22.13.10",
"assemblyscript": "^0.27.35",
"assemblyscript-prettier": "^3.0.1",
"json-as": "^1.1.15-preview.1",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"contributors": [],
"keywords": [
"assemblyscript",
"serialize",
"deserialize",
"performance"
],
"publishConfig": {
"@JairusSW:registry": "https://npm.pkg.github.com"
},
"type": "module"
}