-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 773 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
34
35
36
37
38
39
40
{
"name": "aiupdate",
"version": "0.1.4",
"description": "Update all your AI agent CLIs and skills concurrently",
"type": "module",
"bin": {
"aiupdate": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/cli.ts --format esm --target node18 --clean && chmod +x dist/cli.js",
"prepublishOnly": "npm run build",
"dev": "tsx src/cli.ts",
"test": "vitest run"
},
"dependencies": {
"execa": "^9.0.0",
"listr2": "^10.0.0"
},
"devDependencies": {
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=22"
},
"keywords": [
"ai",
"cli",
"update",
"claude",
"codex",
"opencode"
],
"license": "MIT"
}