Files
webnet/packages/http/package.json
T
2026-04-12 22:44:03 +00:00

28 lines
627 B
JSON

{
"name": "@webnet/http",
"version": "0.1.0",
"description": "HTTP/1.1 server over Tailscale WASM networking",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "tsx --test 'src/**/*.test.ts'",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"regexparam": "^3.0.0"
}
}