@machina.ai/cell-cli 1.0.13-rc4 → 1.0.13-rc5
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/package.json +49 -78
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/package.json
CHANGED
|
@@ -1,79 +1,50 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"string-width": "^7.1.0",
|
|
52
|
-
"strip-ansi": "^7.1.0",
|
|
53
|
-
"strip-json-comments": "^3.1.1",
|
|
54
|
-
"update-notifier": "^7.3.1",
|
|
55
|
-
"yargs": "^17.7.2"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@babel/runtime": "^7.27.6",
|
|
59
|
-
"@testing-library/react": "^16.3.0",
|
|
60
|
-
"@types/command-exists": "^1.2.3",
|
|
61
|
-
"@types/diff": "^7.0.2",
|
|
62
|
-
"@types/dotenv": "^6.1.1",
|
|
63
|
-
"@types/node": "^20.11.24",
|
|
64
|
-
"@types/react": "^19.1.8",
|
|
65
|
-
"@types/react-dom": "^19.1.6",
|
|
66
|
-
"@types/semver": "^7.7.0",
|
|
67
|
-
"@types/shell-quote": "^1.7.5",
|
|
68
|
-
"@types/yargs": "^17.0.32",
|
|
69
|
-
"ink-testing-library": "^4.0.0",
|
|
70
|
-
"jsdom": "^26.1.0",
|
|
71
|
-
"pretty-format": "^30.0.2",
|
|
72
|
-
"react-dom": "^19.1.0",
|
|
73
|
-
"typescript": "^5.3.3",
|
|
74
|
-
"vitest": "^3.2.4"
|
|
75
|
-
},
|
|
76
|
-
"engines": {
|
|
77
|
-
"node": ">=20"
|
|
78
|
-
}
|
|
79
|
-
}
|
|
2
|
+
"name": "@machina.ai/cell-cli",
|
|
3
|
+
"version": "1.0.13-rc5",
|
|
4
|
+
"description": "Cell CLI",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/machina-ai/cell-cli.git"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "index.js",
|
|
11
|
+
"bin": {
|
|
12
|
+
"cell-cli": "index.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
""
|
|
16
|
+
],
|
|
17
|
+
"config": {
|
|
18
|
+
"sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:1.0.13-rc5"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@machina.ai/cell-cli-core": "^1.0.13-rc5",
|
|
22
|
+
"@iarna/toml": "^2.2.5",
|
|
23
|
+
"@types/update-notifier": "^6.0.8",
|
|
24
|
+
"command-exists": "^1.2.9",
|
|
25
|
+
"diff": "^7.0.0",
|
|
26
|
+
"dotenv": "^17.1.0",
|
|
27
|
+
"glob": "^10.4.1",
|
|
28
|
+
"highlight.js": "^11.11.1",
|
|
29
|
+
"ink": "^6.0.1",
|
|
30
|
+
"ink-big-text": "^2.0.0",
|
|
31
|
+
"ink-gradient": "^3.0.0",
|
|
32
|
+
"ink-link": "^4.1.0",
|
|
33
|
+
"ink-select-input": "^6.2.0",
|
|
34
|
+
"ink-spinner": "^5.0.0",
|
|
35
|
+
"lowlight": "^3.3.0",
|
|
36
|
+
"mime-types": "^3.0.1",
|
|
37
|
+
"open": "^10.1.2",
|
|
38
|
+
"react": "^19.1.0",
|
|
39
|
+
"read-package-up": "^11.0.0",
|
|
40
|
+
"shell-quote": "^1.8.3",
|
|
41
|
+
"string-width": "^7.1.0",
|
|
42
|
+
"strip-ansi": "^7.1.0",
|
|
43
|
+
"strip-json-comments": "^3.1.1",
|
|
44
|
+
"update-notifier": "^7.3.1",
|
|
45
|
+
"yargs": "^17.7.2"
|
|
46
|
+
},
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=20"
|
|
49
|
+
}
|
|
50
|
+
}
|