Skip to content

Commit 9a47698

Browse files
committed
chore: TODO -> cat-code
1 parent d080a51 commit 9a47698

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

bun.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"lockfileVersion": 1,
33
"workspaces": {
44
"": {
5-
"name": "ts-cli-template",
5+
"name": "cat-code",
66
"dependencies": {
77
"commander": "14.0.0",
88
},

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "ts-cli-template",
2+
"name": "cat-code",
33
"module": "src/index.ts",
44
"type": "module",
55
"version": "0.0.0",
66
"author": "koki-develop <[email protected]>",
7-
"homepage": "https://github.com/koki-develop/TODO",
7+
"homepage": "https://github.com/koki-develop/cat-code",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/koki-develop/TODO.git"
10+
"url": "git+https://github.com/koki-develop/cat-code.git"
1111
},
1212
"license": "MIT",
1313
"bin": {
14-
"TODO": "dist/index.js"
14+
"cat-code": "dist/index.js"
1515
},
1616
"files": [
1717
"dist"

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import packageJson from "../package.json" with { type: "json" };
44
const program = new Command();
55

66
program
7-
.name("TODO")
7+
.name("cat-code")
88
.version(packageJson.version)
99
.action(() => {
1010
console.log("hello world");

0 commit comments

Comments
 (0)