This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 KB
/
package.json
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
{
"name": "solid-trpc",
"description": "tRPC adapter for SolidJS",
"author": "OrJDev",
"license": "MIT",
"version": "0.1.0-sssr.8",
"publishConfig": {
"access": "public",
"tag": "start-ssr"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"solid": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsc -p . && rollup -c"
},
"devDependencies": {
"@tanstack/solid-query": "^5.0.0-beta.15",
"@babel/core": "^7.18.13",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@trpc/client": "10.0.0-rc.2",
"@trpc/server": "10.0.0-rc.2",
"@types/node": "^18.7.14",
"babel-preset-solid": "^1.5.3",
"rollup": "^2.79.0",
"solid-js": "^1.5.3",
"solid-start": "^0.2.1",
"typescript": "^4.8.2"
},
"peerDependencies": {
"@tanstack/solid-query": "^5.0.0-beta.15",
"@trpc/client": "^10.0.0-rc.2",
"@trpc/server": "^10.0.0-rc.2",
"solid-js": "^1.5.3",
"solid-start": "^0.2.1"
},
"keywords": [
"SolidJS",
"SolidStart",
"tRPC",
"JD"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OrJDev/solid-trpc.git"
},
"bugs": {
"url": "https://github.com/OrJDev/solid-trpc/issues"
},
"homepage": "https://github.com/OrJDev/solid-trpc#readme"
}