-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.06 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
91
{
"name": "@atlascloud/openclaw-atlascloud-provider",
"version": "2026.6.1",
"description": "OpenClaw video generation provider for Atlas Cloud (Kling, Veo, Seedance, Wan, Vidu, Sora, Hailuo).",
"type": "module",
"license": "MIT",
"author": "Atlas Cloud <support@atlascloud.ai>",
"homepage": "https://github.com/AtlasCloudAI/openclaw-atlascloud-provider#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AtlasCloudAI/openclaw-atlascloud-provider.git"
},
"bugs": {
"url": "https://github.com/AtlasCloudAI/openclaw-atlascloud-provider/issues"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"openclaw-provider",
"clawhub",
"atlascloud",
"atlas-cloud",
"video-generation",
"text-to-video",
"image-to-video",
"kling",
"veo",
"seedance",
"wan",
"vidu",
"sora",
"hailuo"
],
"engines": {
"node": ">=22.19.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"openclaw": {
"extensions": [
"./src/index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.6.0",
"minGatewayVersion": "2026.6.0"
},
"build": {
"openclawVersion": "2026.6.1",
"pluginSdkVersion": "2026.6.1"
}
},
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm run test"
},
"peerDependencies": {
"openclaw": ">=2026.6.0"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.0.0",
"openclaw": "^2026.6.1",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}