-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.65 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
63
64
{
"name": "@37signals/openclaw-basecamp",
"version": "0.1.0",
"description": "OpenClaw Basecamp channel plugin — Campfire, cards, todos, check-ins, pings",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/",
"openclaw.plugin.json"
],
"engines": {
"node": ">=22.5"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist coverage *.tsbuildinfo",
"prepublishOnly": "npm run build",
"check": "npm run typecheck && npm run lint && npm test",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@vitest/coverage-v8": "^4.1.0",
"openclaw": "2026.3.28",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"channel": {
"id": "basecamp",
"label": "Basecamp",
"selectionLabel": "Basecamp (Campfire, Cards, Todos, Check-ins, Pings)",
"docsPath": "/channels/basecamp",
"docsLabel": "basecamp",
"blurb": "Campfire chats, card tables, to-do lists, check-ins, pings — every Basecamp surface as a live agent interaction point."
},
"install": {
"npmSpec": "@37signals/openclaw-basecamp",
"defaultChoice": "npm"
}
},
"dependencies": {
"@37signals/basecamp": "0.7.2",
"@sinclair/typebox": "^0.34.49",
"zod": "^4.3.6"
},
"overrides": {
"@hono/node-server": "1.19.10"
}
}