-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.22 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
72
73
74
{
"name": "@algora/sdk",
"version": "0.3.1",
"description": "Algora SDK",
"author": "Algora PBC. <[email protected]> (https://algora.io)",
"maintainers": [
"Zafer Cesur <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/algora-io/sdk.git"
},
"files": [
"dist/**/*",
"src/**/*",
"types/**/*",
"LICENSE",
"README.md"
],
"keywords": [
"sdk",
"api",
"typescript"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"typecheck": "tsc",
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist .turbo node_modules",
"start": "node dist/index.js",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "pnpm lint --fix && manypkg 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": {
"@trpc/client": "^10.0.0",
"@trpc/server": "^10.0.0",
"superjson": "^1.9.1"
},
"devDependencies": {
"@algora/xtrpc": "^0.1.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@manypkg/cli": "^0.20.0",
"@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",
"trpc-openapi": "1.0.0",
"tsup": "^6.7.0",
"typescript": "^5.1.3",
"zod": "^3.21.0"
}
}