-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "@mapl/web",
"version": "0.6.7",
"description": "A compiled web framework for all runtimes",
"keywords": [
"fast",
"lightweight",
"cross-runtime",
"framework",
"web",
"backend"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mapljs/web.git"
},
"license": "MIT",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"task": "bun scripts/task.ts",
"fmt": "biome format .",
"lint": "biome lint .",
"build:test": "bun task build && bun test",
"build:publish": "bun task build && bun task report-size && bun task publish"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@cloudflare/workers-types": "^4.20260213.0",
"@types/bun": "^1.3.9",
"@types/deno": "^2.5.0",
"mitata": "^1.0.34",
"oxc-minify": "^0.94.0",
"oxc-transform": "^0.94.0",
"rolldown": "latest",
"srvx": "^0.8.16",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@biomejs/biome"
],
"dependencies": {
"@mapl/router": "^0.8.7",
"@safe-std/error": "^2.0.4",
"runtime-compiler": "^3.1.5"
}
}