-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 792 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
29
30
{
"name": "@ma/core",
"version": "0.1.0",
"description": "Ma (間) — TypeScript-first HTTP framework for Bun and Deno",
"license": "MIT",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"check": "tsgo --noEmit -p tsconfig.bun.json && tsgo --noEmit -p tsconfig.deno.json && tsgo --noEmit -p tests/tsconfig.json",
"test": "bun test",
"lint": "oxlint",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20260404.1",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"typescript": "^6.0.2",
"zod": "^4.4.3"
}
}