reffy-cli 1.4.2 → 1.7.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 +100 -58
- package/dist/cli.js +547 -172
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/manifest.d.ts +5 -1
- package/dist/manifest.js +59 -6
- package/dist/remote.d.ts +150 -41
- package/dist/remote.js +356 -99
- package/dist/storage.d.ts +1 -1
- package/dist/storage.js +1 -1
- package/dist/types.d.ts +13 -4
- package/dist/workspace.js +6 -4
- package/package.json +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reffy-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Planning system for AI assisted development.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"reffy",
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"prepare": "npm run build",
|
|
36
36
|
"dev": "tsx watch src/cli.ts",
|
|
37
37
|
"check": "tsc --noEmit",
|
|
38
|
-
"remote:backend:demo": "node scripts/reffy-remote-backend-demo.mjs",
|
|
39
38
|
"test": "npm run build && vitest run --coverage",
|
|
40
39
|
"test:watch": "vitest"
|
|
41
40
|
},
|