forked from romanzy313/trpc-uwebsockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.14 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
75
{
"private": false,
"name": "@spk2552/trpc-uwebsockets",
"description": "tRPC adapter for uWebSockets.js server",
"version": "1.0.0",
"main": "./dist/index.js",
"type": "commonjs",
"types": "./types/index.d.ts",
"scripts": {
"start": "jest --watch",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"test:publish": "yarn test && yarn build && yarn pack",
"prepublishOnly": "yarn clean && yarn prettier && yarn lint && yarn test && yarn build",
"clean": "rimraf -rf ./dist && rimraf -rf ./types && rimraf -rf ./*-*.tgz",
"format": "yarn clean && yarn prettier && yarn lint",
"lint": "eslint . --ext .ts --fix",
"lint:dry": "eslint . --ext .ts",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier:dry": "prettier --config .prettierrc 'src/**/*.ts'"
},
"dependencies": {
"@trpc/server": "^10.40.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.34.0"
},
"devDependencies": {
"@trpc/client": "^10.40.0",
"@types/node": "^18.0.6",
"@types/node-fetch": "^2.6.2",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vitest/coverage-v8": "^0.34.6",
"abort-controller": "^3.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"node-fetch": "2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.4.4",
"vitest": "^0.34.4",
"ws": "^8.14.1",
"zod": "^3.22.4"
},
"files": [
"dist",
"src",
"types",
"test"
],
"license": "MIT",
"keywords": [
"trpc",
"uwebsockets",
"trpc adapter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/romanzy313/trpc-uwebsockets.git"
},
"author": "SPK",
"bugs": {
"url": "https://github.com/romanzy313/trpc-uwebsockets/issues"
},
"homepage": "https://github.com/romanzy313/trpc-uwebsockets#readme",
"directories": {
"test": "test"
}
}