khal-os 1.260404.2 → 1.260405.3
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 +10 -15
- package/packages/os-cli/dist/index.js +15653 -0
- package/packages/npx-cli/bin/cli.cjs +0 -120
- package/packages/npx-cli/install.cjs +0 -197
package/package.json
CHANGED
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "khal-os",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"bin": {
|
|
5
|
-
"khal-os": "./packages/npx-cli/bin/cli.cjs"
|
|
6
|
-
},
|
|
7
|
-
"files": [
|
|
8
|
-
"packages/npx-cli/bin/",
|
|
9
|
-
"packages/npx-cli/install.cjs"
|
|
10
|
-
],
|
|
3
|
+
"version": "1.260405.3",
|
|
11
4
|
"scripts": {
|
|
12
5
|
"dev": "next dev --port 8888",
|
|
13
6
|
"build": "npx tsx scripts/build-apps.ts && NEXT_PRIVATE_BUILD_WORKER=false next build",
|
|
14
7
|
"start": "next start --port 8888",
|
|
15
|
-
"postinstall": "
|
|
8
|
+
"postinstall": "chmod +x node_modules/.pnpm/node-pty@*/node_modules/node-pty/prebuilds/darwin-*/spawn-helper 2>/dev/null || true",
|
|
16
9
|
"pty-server": "node pty-server.mjs",
|
|
17
10
|
"lint": "biome check .",
|
|
18
11
|
"lint:fix": "biome check --write .",
|
|
@@ -31,7 +24,6 @@
|
|
|
31
24
|
"@nats-io/jetstream": "^3.3.1",
|
|
32
25
|
"@nats-io/transport-node": "^3.3.1",
|
|
33
26
|
"@number-flow/react": "^0.6.0",
|
|
34
|
-
"@opentelemetry/api": "^1.9.0",
|
|
35
27
|
"@opentelemetry/core": "^2.6.1",
|
|
36
28
|
"@opentelemetry/instrumentation-http": "^0.214.0",
|
|
37
29
|
"@opentelemetry/instrumentation-pg": "^0.66.0",
|
|
@@ -99,15 +91,18 @@
|
|
|
99
91
|
"tsx": "^4.21.0",
|
|
100
92
|
"typescript": "^5"
|
|
101
93
|
},
|
|
94
|
+
"bin": {
|
|
95
|
+
"khal-os": "./packages/os-cli/dist/cli.js"
|
|
96
|
+
},
|
|
97
|
+
"files": [
|
|
98
|
+
"packages/os-cli/dist/"
|
|
99
|
+
],
|
|
102
100
|
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
|
|
103
101
|
"pnpm": {
|
|
104
102
|
"onlyBuiltDependencies": [
|
|
105
103
|
"esbuild",
|
|
106
104
|
"node-pty",
|
|
107
|
-
"@sentry/cli"
|
|
108
|
-
"@swc/core",
|
|
109
|
-
"protobufjs"
|
|
105
|
+
"@sentry/cli"
|
|
110
106
|
]
|
|
111
|
-
}
|
|
112
|
-
"license": "SEE LICENSE IN LICENSE"
|
|
107
|
+
}
|
|
113
108
|
}
|