-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "@adi-family/http-monorepo",
"version": "1.0.0",
"private": true,
"description": "Framework-agnostic, type-safe HTTP interface system",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run build:http && bun run build:http-express && bun run build:http-native",
"build:http": "cd packages/http && bun run build",
"build:http-express": "cd packages/http-express && bun run build",
"build:http-native": "cd packages/http-native && bun run build",
"typecheck": "tsc --noEmit",
"clean": "rm -rf packages/*/dist",
"dev:example": "bun run examples/server/app.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepublish": "./scripts/pre-publish.sh",
"publish:all": "./scripts/publish.sh",
"publish:dry-run": "./scripts/publish.sh --dry-run",
"version:bump": "./scripts/version-bump.sh",
"check:packages": "./scripts/check-packages.sh"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"typescript": "^5.3.0",
"vitepress": "^1.6.4",
"vue": "^3.5.22"
},
"repository": {
"type": "git",
"url": "https://github.com/adi-family/http.git"
},
"keywords": [
"http",
"framework-agnostic",
"type-safe",
"validation",
"contracts",
"zod",
"express",
"typescript"
],
"author": "ADI Family",
"license": "MIT",
"bugs": {
"url": "https://github.com/adi-family/http/issues"
},
"homepage": "https://github.com/adi-family/http#readme"
}