-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.85 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
{
"name": "@rabbit-company/web-monorepo",
"version": "0.18.2",
"description": "High-performance web framework monorepo",
"private": true,
"type": "module",
"homepage": "https://github.com/Rabbit-Company/Web-JS",
"funding": "https://rabbit-company.com/donation",
"author": "Rabbit Company <info@rabbit-company.com>",
"license": "MIT",
"workspaces": [
"packages/core",
"packages/middleware"
],
"scripts": {
"build": "bun run build.ts",
"build:core": "cd packages/core && bun run build",
"build:middleware": "cd packages/middleware && bun run build",
"build:all": "bun run build:core && bun run build:middleware",
"test": "bun test",
"test:core": "cd packages/core && bun test",
"test:middleware": "cd packages/middleware && bun test",
"dev": "bun --watch run build.ts",
"dev:core": "cd packages/core && bun run dev",
"dev:middleware": "cd packages/middleware && bun run dev",
"clean": "rm -rf ./packages/core/dist/ ./packages/middleware/dist/",
"publish:core": "cd packages/core && bun publish --access public",
"publish:middleware": "cd packages/middleware && bun publish --access public",
"publish:all": "bun run publish:core && bun run publish:middleware"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rabbit-Company/Web-JS.git"
},
"contributors": [
"Rabbit Company <info@rabbit-company.com> (https://github.com/Rabbit-Company)"
],
"bugs": {
"url": "https://github.com/Rabbit-Company/Web-JS/issues",
"email": "info@rabbit-company.com"
},
"keywords": [
"api",
"web",
"framework",
"security",
"middleware",
"monorepo"
],
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/node": "^25.3.3",
"typescript": "^5.9.3",
"bun-plugin-dts": "^0.4.0",
"hono": "^4.12.5",
"elysia": "^1.4.27"
},
"dependencies": {
"@rabbit-company/logger": "^5.6.1",
"@rabbit-company/rate-limiter": "^3.0.1"
}
}