-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.36 KB
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
{
"name": "@chatcops/server",
"version": "0.2.0",
"description": "Server-side handler and adapters for ChatCops",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./express": {
"types": "./dist/adapters/express.d.ts",
"import": "./dist/adapters/express.js"
},
"./vercel": {
"types": "./dist/adapters/vercel.d.ts",
"import": "./dist/adapters/vercel.js"
},
"./cloudflare": {
"types": "./dist/adapters/cloudflare.d.ts",
"import": "./dist/adapters/cloudflare.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist *.tsbuildinfo"
},
"dependencies": {
"@chatcops/core": "workspace:*",
"zod": "^3.24.0"
},
"peerDependencies": {
"express": "^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"@types/express": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/codercops/chatcops",
"directory": "packages/server"
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}