-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.58 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@zenmux/openclaw-plugin",
"version": "0.1.2",
"description": "ZenMux OAuth 2.0 PKCE provider plugin for OpenClaw",
"type": "module",
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"scripts": {
"check": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"test": "npm run check && vitest run",
"prepack": "npm test && npm run build"
},
"engines": {
"node": ">=22.22.3 <23 || >=24.15.0 <25 || >=25.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZenMux/openclaw-plugin.git"
},
"homepage": "https://github.com/ZenMux/openclaw-plugin#readme",
"bugs": {
"url": "https://github.com/ZenMux/openclaw-plugin/issues"
},
"keywords": [
"openclaw",
"zenmux",
"oauth",
"pkce",
"ai"
],
"license": "MIT",
"peerDependencies": {
"openclaw": ">=2026.7.1"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^24.0.0",
"openclaw": "2026.7.1-2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"install": {
"npmSpec": "@zenmux/openclaw-plugin",
"defaultChoice": "npm",
"minHostVersion": ">=2026.7.1"
},
"compat": {
"pluginApi": ">=2026.7.1"
},
"build": {
"openclawVersion": "2026.7.1",
"bundledDist": false
},
"release": {
"publishToClawHub": false,
"publishToNpm": true
}
}
}