@koda-sl/baker-cli 0.99.0-dev.40c99be71 → 0.99.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/README.md +10 -0
- package/dist/{chunk-FOK2JPRW.js → chunk-3JVYU72O.js} +4 -6
- package/dist/chunk-3JVYU72O.js.map +1 -0
- package/dist/cli.js +664 -636
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +5 -3
- package/dist/chunk-FOK2JPRW.js.map +0 -1
package/dist/engine/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koda-sl/baker-cli",
|
|
3
|
-
"version": "0.99.0
|
|
3
|
+
"version": "0.99.0",
|
|
4
4
|
"description": "AI-agent-first CLI for interacting with Baker, including the Baker creative canvas.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,8 +21,10 @@
|
|
|
21
21
|
"build": "tsup",
|
|
22
22
|
"dev": "tsx watch src/cli.ts",
|
|
23
23
|
"typecheck": "tsc --noEmit",
|
|
24
|
-
"lint": "biome check src __tests__",
|
|
25
|
-
"test": "vitest run"
|
|
24
|
+
"lint": "biome check src __tests__ tsup.config.ts vitest.config.mts",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"format:check": "biome format src __tests__ tsup.config.ts vitest.config.mts",
|
|
27
|
+
"format": "biome format --write src __tests__ tsup.config.ts vitest.config.mts"
|
|
26
28
|
},
|
|
27
29
|
"dependencies": {
|
|
28
30
|
"@t3-oss/env-core": "^0.13.10",
|