-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 726 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 726 Bytes
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
{
"name": "edgeintracomm",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"test": "as-pect",
"asbuild:debug": "asc assembly/index.ts --target debug --use abort= --use console.log=",
"asbuild:release": "asc assembly/index.ts --target release --use abort= --use console.log=",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"start": "npx serve ."
},
"author": "Tomasz 'CreoOne' Czarnecki",
"license": "MIT",
"devDependencies": {
"assemblyscript": "^0.22.0"
},
"type": "module",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
},
"dependencies": {
"as-wasi": "^0.5.1"
}
}