-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "plugins-automation",
"description": "Automation scripts to manage the 150+ plugins in eliza-plugins organization.",
"author": "ElizaOS",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@octokit/rest": "^21.1.1",
"axios": "^1.7.2",
"chalk": "^5.4.1",
"dotenv": "^16.5.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.0",
"openai": "^4.66.0",
"ora": "^8.2.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.3",
"typescript": "5.8.3"
},
"scripts": {
"start": "node dist/index.js",
"package-names": "node dist/packageNames.js",
"releaseV1": "node dist/releaseV1.js",
"github-urls-json": "node ./dist/githubUrlsJson.js",
"migrate-plugins": "node dist/migratePlugins.js",
"agent-config-scan": "node dist/agentConfigScan.js",
"npm-download-stats": "node dist/npmDownloadStats.js",
"generate-readmes": "node dist/generateReadmes.js",
"generate-readmes:test": "node dist/generateReadmes.js --test",
"generate-readmes:local": "node dist/generateReadmes.js --local",
"build": "tsc",
"clean": "rm -rf dist"
}
}