-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "@elvatis_com/openclaw-docker",
"version": "0.2.0",
"description": "OpenClaw plugin - Docker container management: list, logs, start/stop, Compose stacks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:integration": "jest --config jest.integration.config.cjs",
"test:all": "vitest run && jest --config jest.integration.config.cjs",
"prepublishOnly": "npm run build",
"test:watch": "vitest"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"openclaw",
"openclaw-plugin",
"docker",
"containers",
"devops"
],
"author": "Elvatis <hello@example.invalid>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/elvatis/openclaw-docker.git"
},
"dependencies": {
"dockerode": "^4.0.0"
},
"devDependencies": {
"@types/dockerode": "^4.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0",
"vitest": "^4.1.0"
},
"openclaw": {
"extensions": [
"./src/index.ts"
]
},
"overrides": {
"test-exclude": "^7.0.1"
}
}