skydive-cli 0.1.0-beta.106
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 +259 -0
- package/dist/js/bin.mjs +2348 -0
- package/dist/js/boot-DRWra2vY.mjs +6222 -0
- package/dist/js/print-CQ8b7JUC.mjs +745 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "skydive-cli",
|
|
3
|
+
"version": "0.1.0-beta.106",
|
|
4
|
+
"description": "Skydive CLI — manage AI agents from the command line",
|
|
5
|
+
"homepage": "https://skydive.com",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"bin": {
|
|
8
|
+
"skydive": "./dist/js/bin.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"exports": {
|
|
15
|
+
"./bin": "./dist/js/bin.mjs"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public",
|
|
19
|
+
"registry": "https://registry.npmjs.org"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsdown --no-dts --out-dir dist/js",
|
|
23
|
+
"test:unit": "vitest run --passWithNoTests && yarn test:tui",
|
|
24
|
+
"test:ci": "vitest run --coverage --coverage.reporter=lcovonly --reporter=default --reporter=github-actions --minWorkers=1 --maxWorkers=2 --passWithNoTests && yarn test:tui",
|
|
25
|
+
"test:tui": "bun test .tui.test",
|
|
26
|
+
"render:frames": "bun scripts/render-frames.tsx",
|
|
27
|
+
"typecheck": "tsgo --noEmit"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@opentui/react": "0.4.3",
|
|
31
|
+
"conf": "^13.0.1",
|
|
32
|
+
"diff": "9.0.0",
|
|
33
|
+
"eventsource-parser": "^3.0.8",
|
|
34
|
+
"file-type": "^21.3.4",
|
|
35
|
+
"neverthrow": "^8.2.0",
|
|
36
|
+
"open": "^10.1.0",
|
|
37
|
+
"react": "^19.0.0",
|
|
38
|
+
"react-devtools-core": "^7.0.1",
|
|
39
|
+
"web-tree-sitter": "0.25.10",
|
|
40
|
+
"ws": "^8.21.0",
|
|
41
|
+
"yargs": "^17.7.2",
|
|
42
|
+
"zod": "^3.24.1",
|
|
43
|
+
"zustand": "^5.0.2"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@createinc/anyone-portal-protocol": "0.0.0",
|
|
47
|
+
"@createinc/tsconfig": "0.0.0",
|
|
48
|
+
"@types/bun": "^1.3.14",
|
|
49
|
+
"@types/node": "^24.0.0",
|
|
50
|
+
"@types/react": "^19.0.0",
|
|
51
|
+
"@types/yargs": "^17.0.33",
|
|
52
|
+
"@typescript/native-preview": "^7.0.0-dev.20260113.1",
|
|
53
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
54
|
+
"tsdown": "^0.20.3",
|
|
55
|
+
"typescript": "^5.9.3",
|
|
56
|
+
"vitest": "^2.1.8"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"bun": ">=1.3.14",
|
|
60
|
+
"node": ">=20.0.0"
|
|
61
|
+
}
|
|
62
|
+
}
|