-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "@panukettu/wasm-bun",
"version": "1.0.0",
"type": "module",
"description": "create wasm with assemblyscript and web with bun/hono",
"main": "./src/index.ts",
"default": "index.html",
"scripts": {
"start": "bun run dev",
"lint": "npx prettier . --write",
"dev": "concurrently \"npm:dev:*\"",
"dev:server": "bun --hot src/server.tsx",
"dev:asm": "nodemon assembly/index.ts",
"asm": "asc --target debug",
"asbuild:release": "asc --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"test": "node tests"
},
"devDependencies": {
"assemblyscript": "^0.27.1",
"bun": "^0.5.9",
"bun-html-live-reload": "github:aabccd021/bun-html-live-reload",
"bun-types": "^0.5.8",
"concurrently": "^8.0.1",
"nodemon": "^2.0.22",
"typescript": "^5.0.4"
},
"keywords": [],
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
},
"dependencies": {
"hono": "^3.1.5",
"serve-static-bun": "^0.5.1"
}
}