-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "trpc-cli",
"version": "0.5.1",
"description": "Turn a tRPC router into a type-safe, fully-functional, documented CLI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"scripts": {
"prepare": "pnpm build",
"lint": "eslint --max-warnings=0 .",
"build": "tsc -p tsconfig.lib.json",
"dev": "cd test/fixtures && tsx",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmkal/trpc-cli.git"
},
"keywords": [
"tprc",
"cli",
"typescript"
],
"author": "mmkal",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mmkal/trpc-cli/issues"
},
"homepage": "https://github.com/mmkal/trpc-cli#readme",
"peerDependencies": {
"@trpc/server": ">=10",
"zod": ">=3"
},
"dependencies": {
"@trpc/server": "^10.45.2",
"cleye": "^1.3.2",
"picocolors": "^1.0.1",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.0",
"zod-validation-error": "^3.3.0"
},
"devDependencies": {
"trpcserver10": "npm:@trpc/[email protected]",
"trpcserver11": "npm:@trpc/[email protected]",
"@types/node": "20.16.11",
"eslint-plugin-mmkal": "0.9.0",
"execa": "9.3.1",
"expect-type": "1.1.0",
"fs-syncer": "0.5.3",
"np": "10.0.7",
"pkg-pr-new": "^0.0.29",
"strip-ansi": "7.1.0",
"tsx": "4.19.1",
"typescript": "5.6.3",
"vitest": "2.1.3"
}
}