-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.99 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.99 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
{
"name": "AgentRunComponent",
"version": "1.0.5",
"description": "This is agentrun component for Serverless Devs Tool",
"autoInstall": false,
"homepage": "https://www.serverless-devs.com",
"author": "Serverless-Devs",
"contributors": [],
"license": "MIT",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"Serverless",
"Framework",
"Serverless-Devs",
"Serverless-Tool",
"AgentRun",
"AI Agent"
],
"scripts": {
"start": "npm run watch",
"watch": "tsc -w",
"format": "prettier --write src/",
"prebuild": "rimraf dist && npm run format",
"build": "esbuild src/index.ts --bundle --log-level=error --external:proxy-agent --minify --platform=node --format=cjs --target=node14 --outfile=dist/index.js",
"postbuild": "cp src/common/schema.json dist/schema.json && cp src/common/schema-delete.json dist/schema-delete.json",
"test": "echo \"Error: no test specified\" && exit 0",
"prepublishOnly": "npm run build",
"publish": "npm i && npm run build && s registry publish"
},
"dependencies": {
"@alicloud/agentrun20250910": "^5.3.9",
"@alicloud/openapi-client": "^0.4.9",
"@alicloud/tea-typescript": "^1.8.0",
"@alicloud/tea-util": "^1.4.8",
"@alicloud/fc2": "^2.6.6",
"@alicloud/fc20230330": "^4.6.3",
"@serverless-cd/srm-aliyun-sls20201230": "0.0.4",
"@serverless-devs/component-interface": "^0.0.4",
"@serverless-devs/logger": "^0.0.5",
"@serverless-devs/load-component": "*",
"@serverless-devs/utils": "^0.0.15",
"@serverless-devs/zip": "^0.0.3-beta.8",
"ajv": "^8.13.0",
"ali-oss": "^6.20.0",
"axios": "^1.7.9",
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/node": "^20.12.12",
"esbuild": "^0.21.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}