-
-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) 路 2.88 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) 路 2.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@orpc/monorepo",
"type": "module",
"version": "2.0.0-beta.36",
"private": true,
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^12.4.1",
"onFail": "download"
}
},
"scripts": {
"prepare": "simple-git-hooks",
"type:check": "pnpm run -r type:check && tsc",
"bench": "vitest bench --run",
"test": "pnpm run -r test && vitest run",
"test:coverage": "pnpm run -r test:coverage && vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"repo:fix": "sherif --fix",
"docs:validate": "node scripts/verify-docs-jsdoc.ts && pnpm run -r docs:validate",
"sponsors:sync": "node scripts/sync-sponsors.ts && eslint --fix **/README.md"
},
"devDependencies": {
"@antfu/eslint-config": "^9.2.0",
"@codspeed/vitest-plugin": "^5.7.1",
"@hono/node-server": "^2.1.1",
"@opentelemetry/api": "^1.9.1",
"@orpc/arktype": "workspace:*",
"@orpc/client": "workspace:*",
"@orpc/contract": "workspace:*",
"@orpc/evlog": "workspace:*",
"@orpc/experimental-effect": "workspace:*",
"@orpc/experimental-lock": "workspace:*",
"@orpc/experimental-msw": "workspace:*",
"@orpc/hibernation": "workspace:*",
"@orpc/json-schema": "workspace:*",
"@orpc/next": "workspace:*",
"@orpc/node": "workspace:*",
"@orpc/openapi": "workspace:*",
"@orpc/opentelemetry": "workspace:*",
"@orpc/pino": "workspace:*",
"@orpc/publisher": "workspace:*",
"@orpc/ratelimit": "workspace:*",
"@orpc/server": "workspace:*",
"@orpc/shared": "workspace:*",
"@orpc/tanstack-query": "workspace:*",
"@orpc/valibot": "workspace:*",
"@orpc/zod": "workspace:*",
"@standard-server/core": "~0.9.0",
"@standard-server/fetch": "~0.9.0",
"@standard-server/peer": "~0.9.0",
"@standard-server/shared": "~0.9.0",
"@tanstack/ai": "^0.46.0",
"@tanstack/ai-client": "^0.24.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/supertest": "^7.2.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.11",
"arktype": "^2.2.1",
"bumpp": "^12.2.0",
"changelogithub": "^15.0.4",
"crossws": "^0.4.6",
"eslint": "^10.8.0",
"eslint-plugin-ban": "^2.0.0",
"eslint-plugin-format": "^2.0.1",
"github-slugger": "^2.0.0",
"jsdom": "^29.1.1",
"lint-staged": "^17.3.0",
"pino": "^10.3.1",
"pkg-pr-new": "^0.0.88",
"react": "^19.2.8",
"sherif": "^1.11.1",
"simple-git-hooks": "^2.13.1",
"supertest": "^7.2.2",
"typescript": "^6.0.3",
"unbuild": "^3.6.1",
"valibot": "^1.5.0",
"vite": "^8.2.2",
"vitest": "^4.1.11",
"ws": "^8.21.3",
"zod": "^4.5.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --no-warn-ignored --fix"
}
}