Skip to content

Commit 80b1cee

Browse files
committed
first commit
1 parent 12266ae commit 80b1cee

File tree

7 files changed

+891
-0
lines changed

7 files changed

+891
-0
lines changed

package.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "@creatorem/next-trpc",
3+
"private": false,
4+
"version": "1.0.0",
5+
"homepage": "https://creatorem.com",
6+
"author": {
7+
"url": "https://creatorem.com",
8+
"name": "Creatorem"
9+
},
10+
"scripts": {
11+
"clean": "git clean -xdf .turbo node_modules",
12+
"format": "prettier --check \"**/*.{ts,tsx}\"",
13+
"lint": "eslint .",
14+
"typecheck": "tsc --noEmit",
15+
"test": "jest",
16+
"test:watch": "jest --watch",
17+
"test:coverage": "jest --coverage"
18+
},
19+
"exports": {
20+
"./": "./src/core.ts",
21+
"./server": "./src/create-rpc-api.ts",
22+
"./client": "./src/create-rpc-client.ts",
23+
"./query-client": "./src/create-rpc-query-client.ts"
24+
},
25+
"peerDependencies": {
26+
"@tanstack/react-query": "5.90.12",
27+
"next": "16.0.7",
28+
"zod": "^3.25.76"
29+
},
30+
"packageManager": "[email protected]",
31+
"typesVersions": {
32+
"*": {
33+
"*": [
34+
"src/*"
35+
]
36+
}
37+
}
38+
}

0 commit comments

Comments
 (0)