@coderook/cli 0.22.1 → 0.23.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/.claude-plugin/plugin.json +1 -1
- package/dist/cli/src/cli.js +231 -58
- package/dist/cli/src/import_command.js +150 -0
- package/dist/cli/src/offline.js +28 -0
- package/dist/desktop-app/src/main/compress.js +6 -31
- package/dist/desktop-app/src/main/download.js +200 -4
- package/dist/desktop-app/src/main/upload.js +307 -34
- package/dist/desktop-app/src/shared/chunking.js +21 -1
- package/dist/desktop-app/src/shared/compression_policy.js +35 -0
- package/dist/desktop-app/src/shared/telemetry.js +47 -0
- package/package.json +51 -51
package/package.json
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@coderook/cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "CodeRook from the command line, on any operating system",
|
|
5
|
-
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
|
-
"homepage": "https://coderook.com",
|
|
7
|
-
"bugs": {
|
|
8
|
-
"url": "https://coderook.com/contact"
|
|
9
|
-
},
|
|
10
|
-
"keywords": [
|
|
11
|
-
"coderook",
|
|
12
|
-
"versioning",
|
|
13
|
-
"backup",
|
|
14
|
-
"cbx"
|
|
15
|
-
],
|
|
16
|
-
"engines": {
|
|
17
|
-
"node": ">=20.11.0"
|
|
18
|
-
},
|
|
19
|
-
"bin": {
|
|
20
|
-
"coderook": "dist/cli/src/cli.js"
|
|
21
|
-
},
|
|
22
|
-
"files": [
|
|
23
|
-
".claude-plugin",
|
|
24
|
-
"dist",
|
|
25
|
-
"skills"
|
|
26
|
-
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "tsc -p tsconfig.json",
|
|
29
|
-
"check": "tsc -p tsconfig.json --noEmit",
|
|
30
|
-
"test": "tsc -p tsconfig.json && node --test --experimental-strip-types test/*.test.ts",
|
|
31
|
-
"start": "node dist/cli/src/cli.js",
|
|
32
|
-
"prepublishOnly": "npm run sync:plugin && npm run build",
|
|
33
|
-
"test:e2e": "node test/e2e.mjs",
|
|
34
|
-
"test:matrix": "node test/state-matrix.mjs",
|
|
35
|
-
"test:attempt": "node test/attempt-identity.mjs",
|
|
36
|
-
"test:get": "node test/get-safety.mjs",
|
|
37
|
-
"test:live": "node test/e2e.mjs --allow-production && node test/state-matrix.mjs --allow-production && node test/get-safety.mjs --allow-production && node test/get-protects-edits.mjs --allow-production && node test/upgrade-migration.mjs --allow-production && node test/fault-get.mjs --allow-production && node test/version-floor.mjs --allow-production && node test/fault-submit.mjs --allow-production && node test/race-attempts.mjs --allow-production && node test/attempt-identity.mjs --allow-production",
|
|
38
|
-
"test:getedits": "node test/get-protects-edits.mjs",
|
|
39
|
-
"test:upgrade": "node test/upgrade-migration.mjs",
|
|
40
|
-
"test:faultget": "node test/fault-get.mjs",
|
|
41
|
-
"test:floor": "node test/version-floor.mjs",
|
|
42
|
-
"test:faultsubmit": "node test/fault-submit.mjs",
|
|
43
|
-
"test:race": "node test/race-attempts.mjs",
|
|
44
|
-
"test:runner": "node test/runner-live.mjs",
|
|
45
|
-
"sync:plugin": "node scripts/sync-plugin-version.mjs"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@types/node": "24.10.1",
|
|
49
|
-
"typescript": "5.9.3"
|
|
50
|
-
}
|
|
51
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@coderook/cli",
|
|
3
|
+
"version": "0.23.0",
|
|
4
|
+
"description": "CodeRook from the command line, on any operating system",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
|
+
"homepage": "https://coderook.com",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://coderook.com/contact"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"coderook",
|
|
12
|
+
"versioning",
|
|
13
|
+
"backup",
|
|
14
|
+
"cbx"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=20.11.0"
|
|
18
|
+
},
|
|
19
|
+
"bin": {
|
|
20
|
+
"coderook": "dist/cli/src/cli.js"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
".claude-plugin",
|
|
24
|
+
"dist",
|
|
25
|
+
"skills"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsc -p tsconfig.json",
|
|
29
|
+
"check": "tsc -p tsconfig.json --noEmit",
|
|
30
|
+
"test": "tsc -p tsconfig.json && node --test --experimental-strip-types test/*.test.ts",
|
|
31
|
+
"start": "node dist/cli/src/cli.js",
|
|
32
|
+
"prepublishOnly": "npm run sync:plugin && npm run build",
|
|
33
|
+
"test:e2e": "node test/e2e.mjs",
|
|
34
|
+
"test:matrix": "node test/state-matrix.mjs",
|
|
35
|
+
"test:attempt": "node test/attempt-identity.mjs",
|
|
36
|
+
"test:get": "node test/get-safety.mjs",
|
|
37
|
+
"test:live": "node test/e2e.mjs --allow-production && node test/state-matrix.mjs --allow-production && node test/get-safety.mjs --allow-production && node test/get-protects-edits.mjs --allow-production && node test/upgrade-migration.mjs --allow-production && node test/fault-get.mjs --allow-production && node test/version-floor.mjs --allow-production && node test/fault-submit.mjs --allow-production && node test/race-attempts.mjs --allow-production && node test/attempt-identity.mjs --allow-production",
|
|
38
|
+
"test:getedits": "node test/get-protects-edits.mjs",
|
|
39
|
+
"test:upgrade": "node test/upgrade-migration.mjs",
|
|
40
|
+
"test:faultget": "node test/fault-get.mjs",
|
|
41
|
+
"test:floor": "node test/version-floor.mjs",
|
|
42
|
+
"test:faultsubmit": "node test/fault-submit.mjs",
|
|
43
|
+
"test:race": "node test/race-attempts.mjs",
|
|
44
|
+
"test:runner": "node test/runner-live.mjs",
|
|
45
|
+
"sync:plugin": "node scripts/sync-plugin-version.mjs"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "24.10.1",
|
|
49
|
+
"typescript": "5.9.3"
|
|
50
|
+
}
|
|
51
|
+
}
|