-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 2.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
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
{
"name": "@algora/xtrpc",
"version": "0.1.1",
"description": "Export your tRPC router to massively improve language server performance and/or let your users consume your API from a typed SDK",
"author": "Algora PBC. <info@algora.io> (https://algora.io)",
"maintainers": [
"Zafer Cesur <zafer@algora.io>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/algora-io/xtrpc.git"
},
"files": [
"dist/**/*",
"src/**/*",
"LICENSE",
"README.md"
],
"keywords": [
"trpc",
"api",
"sdk",
"typescript"
],
"type": "module",
"exports": "./dist/index.js",
"bin": {
"xtrpc": "./dist/index.js"
},
"scripts": {
"typecheck": "tsc",
"build": "tsup",
"clean": "rm -rf dist .turbo node_modules",
"start": "node dist/index.js",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "pnpm lint --fix",
"format": "pnpm format:check --write",
"format:check": "pnpm prettier --plugin-search-dir=. **/*.{cjs,mjs,ts,tsx,md,json} --ignore-path ./.gitignore --ignore-unknown --no-error-on-unmatched-pattern --check",
"release": "changeset version",
"pub:beta": "pnpm build && npm publish --tag beta --access public",
"pub:next": "pnpm build && npm publish --tag next --access public",
"pub:release": "pnpm build && npm publish --access public"
},
"dependencies": {
"ts-morph": "^19.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@total-typescript/ts-reset": "^0.3.7",
"@types/eslint": "^8.37.0",
"@types/node": "^18.16.0",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^0.0.9",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-isaacscript": "^2.6.7",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.1.3"
}
}