-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
76 lines (76 loc) · 1.98 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
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
72
73
74
75
76
{
"name": "json-as",
"version": "0.9.26",
"description": "The only JSON library you'll need for AssemblyScript. SIMD enabled",
"types": "assembly/index.ts",
"author": "Jairus Tanaka",
"contributors": [
"DogWhich",
"Romdotdog",
"Derek Barrera",
"Frankk Taylor",
"lekiano",
"Florian Guitton",
"Matt Johnson-Pint",
"Tomáš Hromada"
],
"license": "MIT",
"scripts": {
"test": "ast test && rm -rf ./build/",
"pretest": "rm -rf ./build/ && ast build",
"bench": "astral --enable simd --runtime stub",
"build:test": "rm -rf ./build/ && JSON_DEBUG=true asc assembly/test.ts --transform ./transform -o ./build/test.wasm",
"build:transform": "tsc -p ./transform",
"test:wasmtime": "wasmtime ./build/test.wasm",
"test:wavm": "wavm run ./build/test.wasm",
"test:lunatic": "lunatic ./build/test.wasm",
"test:wasm3": "wasm3 ./build/test.wasm",
"prettier": "prettier -w ."
},
"devDependencies": {
"@as-tral/cli": "^3.0.2",
"@assemblyscript/wasi-shim": "^0.1.0",
"@types/node": "^20.14.12",
"as-bench": "^0.0.0-alpha",
"as-console": "^7.0.0",
"as-test": "0.3.1",
"assemblyscript": "^0.27.29",
"assemblyscript-prettier": "^3.0.1",
"benchmark": "^2.1.4",
"microtime": "^3.1.1",
"prettier": "^3.3.3",
"tinybench": "^2.8.0",
"typescript": "^5.5.4",
"visitor-as": "^0.11.4"
},
"dependencies": {
"as-virtual": "^0.2.0"
},
"overrides": {
"assemblyscript": "$assemblyscript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JairusSW/as-json.git"
},
"keywords": [
"assemblyscript",
"json",
"serialize",
"deserialize",
"dynamic",
"serde",
"SIMD",
"optimized",
"fast",
"algorithm"
],
"bugs": {
"url": "https://github.com/JairusSW/as-json/issues"
},
"homepage": "https://github.com/JairusSW/as-json#readme",
"type": "module",
"publishConfig": {
"@JairusSW:registry": "https://npm.pkg.github.com"
}
}