codogotchi 0.0.1 → 1.0.0
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/dist/codogotchi.js +26382 -0
- package/package.json +17 -11
- package/README.md +0 -9
- package/bin/codogotchi.js +0 -6
package/package.json
CHANGED
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codogotchi",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "Codogotchi
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Install Codogotchi pets from the marketplace",
|
|
5
5
|
"bin": {
|
|
6
|
-
"codogotchi": "
|
|
6
|
+
"codogotchi": "./dist/codogotchi.js"
|
|
7
7
|
},
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsup"
|
|
13
13
|
},
|
|
14
|
-
"
|
|
14
|
+
"keywords": [
|
|
15
|
+
"codogotchi",
|
|
16
|
+
"cli",
|
|
17
|
+
"pets"
|
|
18
|
+
],
|
|
15
19
|
"license": "MIT",
|
|
16
|
-
"
|
|
17
|
-
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@codogotchi/cli": "workspace:*",
|
|
22
|
+
"tsup": "^8.5.1"
|
|
23
|
+
}
|
|
18
24
|
}
|
package/README.md
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# codogotchi
|
|
2
|
-
|
|
3
|
-
Reserved for the [Codogotchi](https://codogotchi.app) CLI.
|
|
4
|
-
|
|
5
|
-
Codogotchi is a macOS menubar + floating pet that visualizes your AI coding agents
|
|
6
|
-
(Codex, Claude Code, Cursor). The full CLI — including `codogotchi add <pet-id>` to
|
|
7
|
-
install community pets from the gallery — is coming soon.
|
|
8
|
-
|
|
9
|
-
Until then this package just prints a pointer to the project.
|