-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1023 Bytes
/
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
{
"name": "disastro",
"version": "0.0.9",
"description": "AssemblyScript Distribution",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node tests",
"asbuild:debug": "asc assembly/index.ts --target debug --bindings esm",
"asbuild:release": "asc assembly/index.ts --target release --bindings esm",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"start": "npx serve ."
},
"author": "TachyonicBytes",
"license": "Apache-2.0",
"dependencies": {
"as-big": "^0.2.2",
"as-string-sink": "^0.5.2",
"as-uuid": "^0.0.4",
"assemblyscript": "^0.25.0",
"assemblyscript-regex": "^1.6.4",
"byte-parse-as": "^0.1.0",
"json-as": "^0.5.3",
"visitor-as": "^0.11.4"
},
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
},
"devDependencies": {
"@as-pect/cli": "^8.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tachyonicbytes/disAStro.git"
}
}