forked from whateverai-ai/cloudphone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 741 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 741 Bytes
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
{
"name": "@suqiai/cloudphone",
"version": "2026.4.20",
"license": "MIT",
"description": "OpenClaw CloudPhone plugin that gives AI agents cloud phone automation via natural language instructions. Submit tasks to the backend AI Agent and stream results via SSE.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"openclaw.plugin.json",
"skills"
],
"keywords": [
"openclaw",
"plugin",
"cloudphone"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"devDependencies": {
"@types/node": "^25.3.5",
"rimraf": "^6.1.3",
"typescript": "^5.4.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
]
}
}