-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "update-ai-tools",
"version": "1.5.0",
"description": "CLI to update AI npm tools (Claude, Gemini, Copilot, Codex, Kilo Code)",
"keywords": [
"cli",
"ai",
"tools",
"update",
"claude",
"gemini",
"copilot",
"codex",
"npm",
"kilocode"
],
"homepage": "https://github.com/yanai101/update-ai-tools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yanai101/update-ai-tools.git"
},
"bugs": {
"url": "https://github.com/yanai101/update-ai-tools/issues"
},
"bin": {
"update-ai-tools": "./update-ai-tools.js"
},
"scripts": {
"test": "node update-ai-tools.js --help && node update-ai-tools.js check",
"dev": "node update-ai-tools.js",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"publish:npm": "npm publish",
"release": "npm run version:patch && git push origin main && npm run publish:npm"
},
"files": [
"update-ai-tools.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"type": "module",
"author": "Yanai Edri",
"license": "MIT"
}