everything-dev 0.2.0 → 0.3.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/package.json +80 -79
- package/src/cli.ts +1491 -1198
- package/src/components/monitor-view.tsx +423 -419
- package/src/config.ts +530 -243
- package/src/contract.ts +381 -364
- package/src/lib/env.ts +83 -65
- package/src/lib/nova.ts +207 -195
- package/src/lib/orchestrator.ts +232 -199
- package/src/lib/process-registry.ts +141 -132
- package/src/lib/process.ts +499 -409
- package/src/lib/resource-monitor/diff.ts +27 -9
- package/src/lib/resource-monitor/platform/darwin.ts +31 -18
- package/src/lib/resource-monitor/snapshot.ts +164 -151
- package/src/plugin.ts +2281 -1841
- package/src/types.ts +182 -83
- package/src/ui/head.ts +37 -26
- package/src/utils/banner.ts +7 -9
- package/src/utils/run.ts +27 -16
- package/src/lib/secrets.ts +0 -29
package/package.json
CHANGED
|
@@ -1,81 +1,82 @@
|
|
|
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
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
2
|
+
"name": "everything-dev",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "src/index.ts",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./src/index.ts",
|
|
8
|
+
"./types": "./src/types.ts",
|
|
9
|
+
"./config": "./src/config.ts",
|
|
10
|
+
"./ui": "./src/ui/index.ts",
|
|
11
|
+
"./ui/types": "./src/ui/types.ts",
|
|
12
|
+
"./ui/runtime": "./src/ui/runtime.ts",
|
|
13
|
+
"./ui/head": "./src/ui/head.ts",
|
|
14
|
+
"./ui/router": "./src/ui/router.ts"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"src"
|
|
18
|
+
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"bin": {
|
|
23
|
+
"bos": "./src/cli.ts"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"bos": "bun run src/cli.ts",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"test:watch": "vitest",
|
|
29
|
+
"typecheck": "tsc --noEmit"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@clack/prompts": "^1.0.0",
|
|
33
|
+
"@effect/platform": "^0.94.2",
|
|
34
|
+
"@hono/node-server": "^1.19.9",
|
|
35
|
+
"@inquirer/prompts": "^8.2.0",
|
|
36
|
+
"@libsql/client": "^0.17.0",
|
|
37
|
+
"@module-federation/enhanced": "^0.24.1",
|
|
38
|
+
"@module-federation/node": "^2.7.32",
|
|
39
|
+
"@module-federation/runtime-core": "^0.24.1",
|
|
40
|
+
"borsh": "^2.0.0",
|
|
41
|
+
"boxen": "^8.0.1",
|
|
42
|
+
"chalk": "^5.6.2",
|
|
43
|
+
"commander": "^14.0.2",
|
|
44
|
+
"degit": "^2.8.4",
|
|
45
|
+
"effect": "3.19.15",
|
|
46
|
+
"every-plugin": "0.9.0",
|
|
47
|
+
"execa": "^9.6.1",
|
|
48
|
+
"gradient-string": "^3.0.0",
|
|
49
|
+
"ink": "^5.2.1",
|
|
50
|
+
"near-kit": "^0.10.0",
|
|
51
|
+
"near-social-js": "^2.0.4",
|
|
52
|
+
"nova-sdk-js": "^1.0.3",
|
|
53
|
+
"open": "^11.0.0",
|
|
54
|
+
"react": "18.3.1",
|
|
55
|
+
"react-dom": "18.3.1",
|
|
56
|
+
"zod": "4.3.5"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@tanstack/react-query": "^5.0.0",
|
|
60
|
+
"@tanstack/react-router": "^1.0.0",
|
|
61
|
+
"@types/bun": "^1.3.8",
|
|
62
|
+
"@types/gradient-string": "^1.1.6",
|
|
63
|
+
"@types/node": "^25.2.0",
|
|
64
|
+
"@types/react": "^18.3.0",
|
|
65
|
+
"@types/react-dom": "^18.3.0",
|
|
66
|
+
"playwright": "^1.58.1",
|
|
67
|
+
"typescript": "^5.9.3",
|
|
68
|
+
"vitest": "^4.0.18"
|
|
69
|
+
},
|
|
70
|
+
"peerDependencies": {
|
|
71
|
+
"@tanstack/react-query": ">=5.0.0",
|
|
72
|
+
"@tanstack/react-router": ">=1.0.0"
|
|
73
|
+
},
|
|
74
|
+
"peerDependenciesMeta": {
|
|
75
|
+
"@tanstack/react-query": {
|
|
76
|
+
"optional": true
|
|
77
|
+
},
|
|
78
|
+
"@tanstack/react-router": {
|
|
79
|
+
"optional": true
|
|
80
|
+
}
|
|
81
|
+
}
|
|
81
82
|
}
|