-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "memorylake-models-openclaw",
"version": "0.1.4",
"description": "Memorylake.ai model provider plugin for OpenClaw",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"openclaw": {
"extensions": [
"./src/index.ts"
]
},
"files": [
"src/",
"dist/",
"openclaw.plugin.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"release": "bash scripts/publish.sh",
"release:minor": "bash scripts/publish.sh minor",
"release:major": "bash scripts/publish.sh major",
"release:beta": "bash scripts/publish.sh beta",
"release:dry": "bash scripts/publish.sh --dry-run"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"memorylake",
"llm",
"ai",
"model-provider"
],
"author": "Memorylake.ai",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=22.16.0"
},
"packageManager": "pnpm@10.4.1+sha1.ec73125afa7b740b8fcafeab681883c7ec791a4b",
"dependencies": {
"@clack/prompts": "^1.1.0"
}
}