pokegent 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +167 -0
- package/dist/index.js +11567 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pokegent",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Terminal dashboard that shows your Pokémon AI coding ecosystem. Press 's' to flex.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"pokegent": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "tsx src/index.ts",
|
|
11
|
+
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --external:ink --external:react --external:ps-list",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"release": "release-it"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"templates"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"agent",
|
|
21
|
+
"cli",
|
|
22
|
+
"tui",
|
|
23
|
+
"dashboard",
|
|
24
|
+
"ai",
|
|
25
|
+
"coding",
|
|
26
|
+
"terminal"
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"chalk": "^5.3.0",
|
|
31
|
+
"commander": "^15.0.0",
|
|
32
|
+
"glob": "^10.3.0",
|
|
33
|
+
"ink": "^5.2.1",
|
|
34
|
+
"ps-list": "^9.0.0",
|
|
35
|
+
"react": "^18.3.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "^20.11.0",
|
|
39
|
+
"@types/react": "^18.3.0",
|
|
40
|
+
"esbuild": "^0.20.0",
|
|
41
|
+
"release-it": "^20.2.1",
|
|
42
|
+
"tsx": "^4.7.0",
|
|
43
|
+
"typescript": "^5.3.0"
|
|
44
|
+
}
|
|
45
|
+
}
|