-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "trpc-swift",
"version": "0.1.35",
"description": "Generates Swift clients and models from tRPC routers.",
"repository": "https://github.com/calasanmarko/trpc-swift.git",
"author": "Marko Calasan <[email protected]>",
"main": "dist/index.js",
"bin": {
"trpc-swift": "dist/cli.js"
},
"license": "MIT",
"type": "module",
"scripts": {
"start": "node ./dist/index.js",
"watch": "tsc --watch",
"build": "tsc && cp -rf ./templates ./dist",
"clean": "rimraf tsconfig.tsbuildinfo && rimraf -g dist/*",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . **/*.{js,ts,json}"
},
"devDependencies": {
"zod": "^3.22.4",
"@trpc/server": "^10.43.3",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
},
"keywords": [
"typescript",
"ts",
"trpc",
"rpc",
"generator",
"swift",
"ios"
]
}