-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.15 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.15 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
{
"name": "openclaw-linear",
"version": "0.8.0",
"description": "Linear integration for OpenClaw — webhook routing, issue management, and project tools via the Linear GraphQL API",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"skills",
"openclaw.plugin.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepack": "npm run build",
"test": "vitest run"
},
"keywords": [
"openclaw",
"linear",
"webhook",
"plugin"
],
"author": "Stepan Arsentjev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stepandel/openclaw-linear.git"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@sinclair/typebox": "^0.34.0"
},
"peerDependencies": {
"openclaw": ">=2026.3.24"
},
"devDependencies": {
"openclaw": "^2026.4.2",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"openclaw": {
"extensions": [
"./dist/index.js"
]
}
}