This repository was archived by the owner on Mar 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.51 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.51 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@flomesh/ztm-chat",
"version": "2026.3.2",
"description": "ZTM Chat channel plugin for OpenClaw",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"overrides": {
"tar": ">=7.5.7",
"fast-xml-parser": ">=5.3.8"
},
"scripts": {
"build": "node esbuild.config.js",
"build:watch": "node esbuild.config.js --watch",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist --removeComments",
"test": "vitest run",
"test:unit": "vitest run --config vitest.config.unit.ts",
"test:integration": "vitest run --config vitest.config.integration.ts",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:unit": "vitest run --coverage --config vitest.config.unit.ts",
"test:coverage:integration": "vitest run --coverage --config vitest.config.integration.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src index.ts index.test.ts --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"index.ts\" \"index.test.ts\"",
"prepublishOnly": "npm run build",
"changelog": "git-cliff --output CHANGELOG.md",
"changelog:unreleased": "git-cliff --unreleased",
"changelog:preview": "git-cliff --unreleased",
"prepare": "husky",
"docs": "typedoc",
"docs:watch": "typedoc --watch"
},
"dependencies": {
"@sinclair/typebox": "0.34.48",
"openclaw": "2026.3.2"
},
"devDependencies": {
"@types/node": "24.11.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitest/coverage-v8": "4.0.18",
"esbuild": "0.27.3",
"eslint": "10.0.2",
"husky": "9.1.7",
"lint-staged": "16.3.2",
"prettier": "3.8.1",
"typedoc": "0.28.17",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "ztm-chat",
"label": "ZTM Chat",
"selectionLabel": "ZTM Chat",
"blurb": "Decentralized P2P messaging via ZTM network",
"aliases": [
"ztm"
],
"order": 40,
"quickstartAllowFrom": true
},
"install": {
"npmSpec": "@flomesh/ztm-chat",
"localPath": "extensions/ztm-chat",
"defaultChoice": "npm"
}
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}