-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.78 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "doofpi",
"version": "1.0.0",
"description": "Edge-first TypeScript framework based on web standards for building end-to-end type-safe APIs with no code generation",
"author": "Lior Cohen",
"license": "MIT",
"homepage": "https://liorcodev.github.io/doofpi-docs",
"repository": {
"type": "git",
"url": "https://github.com/liorcodev/doofpi.git"
},
"bugs": {
"url": "https://github.com/liorcodev/doofpi/issues"
},
"keywords": [
"typescript",
"api",
"type-safe",
"rpc",
"http",
"router",
"client",
"server",
"zod",
"validation",
"web-standards",
"fetch",
"bun",
"cloudflare-workers",
"deno",
"netlify",
"edge"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint:check": "eslint .",
"lint": "eslint --fix .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsup",
"typecheck": "tsc --noEmit",
"prepack": "bun run build",
"prepare": "husky"
},
"packageManager": "bun@1.3.9",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"prettier": "^3.8.2",
"tsup": "^8.5.1",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4",
"zod": "^4.3.6"
},
"dependencies": {
"extreme-router": "^1.2.0"
}
}