-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.58 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
{
"name": "tsdk-server-adapters",
"version": "0.2.4",
"main": "lib/index.js",
"repository": "tsdk-monorepo/tsdk",
"bugs": "https://github.com/tsdk-monorepo/tsdk/issues",
"homepage": "https://tsdk.dev",
"scripts": {
"start-publish": "npm run build && npm publish --registry=https://registry.npmjs.org",
"build": "rm -rf lib && tsc --project tsconfig.json && rm -rf lib/tests",
"lint": "eslint . --ext .ts,.tsx --fix",
"checktype": "tsc --noEmit",
"test": "cross-env NODE_ENV=test TS_CONFIG_PATHS=true ts-mocha -p tsconfig.json src/**/*.test.ts --parallel --timeout 30000"
},
"files": [
"lib/*",
"README.md"
],
"keywords": [
"tsdk",
"http",
"express",
"socket.io",
"fastify",
"backend",
"typesafe API"
],
"dependencies": {
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@configs/ts-config": "workspace:*",
"@configs/eslint-config": "workspace:*",
"@configs/test-config": "workspace:*",
"@types/express": "^4.17.21",
"typescript": "^5",
"@tsconfig/recommended": "^1.0.7"
},
"peerDependencies": {
"express": "^4.21.0",
"zod": "^3.23.8",
"socket.io": "^4.8.0",
"hono": "^4.6.2",
"fastify": "^5.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"socket.io": {
"optional": true
},
"hono": {
"optional": true
},
"fastify": {
"optional": true
}
},
"eslintConfig": {
"extends": [
"@configs/eslint-config/node"
],
"ignorePatterns": [
"node_modules"
]
},
"license": "MIT"
}