-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "plato-copilot-cli",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Terminal coding assistant CLI compatible with Claude Code UX, backed by GitHub Copilot (GitHub Models API).",
"bin": {
"plato": "dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/cli.js",
"lint": "eslint .",
"fmt": "prettier -w .",
"claude:capabilities": "tsx scripts/print-claude-capabilities.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest unit",
"test:integration": "jest integration",
"test:commands": "jest commands",
"test:e2e": "jest e2e",
"test:ci": "jest --ci --coverage --maxWorkers=2"
},
"dependencies": {
"@types/react": "^19.1.12",
"cross-fetch": "^4.0.0",
"eventsource-parser": "^1.1.2",
"execa": "^9.6.0",
"fast-glob": "^3.3.3",
"ink": "^6.2.3",
"ink-spinner": "^5.0.0",
"keytar": "^7.9.0",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"react": "^19.1.1",
"yaml": "^2.8.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.13",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.32",
"eslint": "^9.9.0",
"jest": "^30.1.3",
"jest-extended": "^6.0.0",
"prettier": "^3.3.2",
"simple-git": "^3.28.0",
"ts-jest": "^29.4.1",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}