-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.77 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.77 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
{
"name": "trpc-server-functions",
"version": "0.1.1",
"description": "Distributed tRPC server functions with a Vite-powered manifest and client/server transforms.",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"bin": {
"trpc-server-functions": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "node --import tsx --test \"src/__tests__/**/*.test.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm run check && npm test"
},
"keywords": [
"trpc",
"vite",
"react-query",
"rpc",
"server-functions",
"tanstack-query",
"hono"
],
"author": {
"name": "Yehia Shahin",
"email": "x@y7ya.com",
"url": "https://y7ya.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/y7ya-com/trpc-server-functions.git"
},
"homepage": "https://github.com/y7ya-com/trpc-server-functions#readme",
"bugs": {
"url": "https://github.com/y7ya-com/trpc-server-functions/issues"
},
"peerDependencies": {
"@trpc/server": "^11.0.0",
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"dependencies": {
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"@rollup/pluginutils": "^5.1.4",
"fast-glob": "^3.3.3",
"magic-string": "^0.30.21"
},
"devDependencies": {
"@types/babel__traverse": "^7.28.0",
"@types/node": "^24.5.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.0"
}
}