@opencode-ai/util 0.0.0-bootstrap.0 → 0.0.0-dev-17472
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/bom.d.ts +22 -0
- package/dist/bom.js +37 -0
- package/dist/cross-spawn-spawner.d.ts +3 -0
- package/dist/cross-spawn-spawner.js +406 -0
- package/dist/effect/app-node-platform.d.ts +6 -0
- package/dist/effect/app-node-platform.js +11 -0
- package/dist/effect/app-node.d.ts +50 -0
- package/dist/effect/app-node.js +8 -0
- package/dist/effect/layer-node.d.ts +79 -0
- package/dist/effect/layer-node.js +181 -0
- package/dist/effect/memo-map.d.ts +2 -0
- package/dist/effect/memo-map.js +2 -0
- package/dist/effect/runtime.d.ts +8 -0
- package/dist/effect/runtime.js +16 -0
- package/dist/effect/service-use.d.ts +7 -0
- package/dist/effect/service-use.js +27 -0
- package/dist/effect-flock.d.ts +31 -0
- package/dist/effect-flock.js +185 -0
- package/dist/flock.d.ts +30 -0
- package/dist/flock.js +273 -0
- package/dist/fs-util.d.ts +137 -0
- package/dist/fs-util.js +212 -0
- package/dist/glob.d.ts +12 -0
- package/dist/glob.js +26 -0
- package/dist/global-roots.d.ts +8 -0
- package/dist/global-roots.js +17 -0
- package/dist/global-roots.workerd.d.ts +7 -0
- package/dist/global-roots.workerd.js +15 -0
- package/dist/global.d.ts +30 -0
- package/dist/global.js +54 -0
- package/dist/hash.d.ts +4 -0
- package/dist/hash.js +12 -0
- package/dist/npm-config.d.ts +4 -0
- package/dist/npm-config.js +34 -0
- package/dist/npm.d.ts +28 -0
- package/dist/npm.js +161 -0
- package/dist/observability/logging.d.ts +6 -0
- package/dist/observability/logging.js +71 -0
- package/dist/observability/otlp.d.ts +18 -0
- package/dist/observability/otlp.js +76 -0
- package/dist/observability/shared.d.ts +1 -0
- package/dist/observability/shared.js +7 -0
- package/dist/observability.d.ts +13 -0
- package/dist/observability.js +37 -0
- package/dist/patch.d.ts +43 -0
- package/dist/patch.js +332 -0
- package/dist/process.d.ts +54 -0
- package/dist/process.js +162 -0
- package/dist/runtime/import.bun.d.ts +2 -0
- package/dist/runtime/import.bun.js +6 -0
- package/dist/runtime/import.node.d.ts +2 -0
- package/dist/runtime/import.node.js +36 -0
- package/dist/runtime-import.d.ts +1 -0
- package/dist/runtime-import.js +1 -0
- package/dist/session-title-fallback.d.ts +16 -0
- package/dist/session-title-fallback.js +23 -0
- package/package.json +62 -7
- package/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,17 +1,72 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
2
3
|
"name": "@opencode-ai/util",
|
|
3
|
-
"version": "0.0.0-
|
|
4
|
-
"
|
|
4
|
+
"version": "0.0.0-dev-17472",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/anomalyco/opencode.git"
|
|
9
|
+
"url": "git+https://github.com/anomalyco/opencode.git",
|
|
10
|
+
"directory": "packages/util"
|
|
9
11
|
},
|
|
10
|
-
"files": [
|
|
11
|
-
"index.js"
|
|
12
|
-
],
|
|
13
|
-
"exports": "./index.js",
|
|
14
12
|
"publishConfig": {
|
|
15
13
|
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"exports": {
|
|
19
|
+
"./effect/layer-node": {
|
|
20
|
+
"import": "./dist/effect/layer-node.js",
|
|
21
|
+
"types": "./dist/effect/layer-node.d.ts"
|
|
22
|
+
},
|
|
23
|
+
"./*": {
|
|
24
|
+
"import": "./dist/*.js",
|
|
25
|
+
"types": "./dist/*.d.ts"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"imports": {
|
|
29
|
+
"#global-roots": {
|
|
30
|
+
"workerd": "./dist/global-roots.workerd.js",
|
|
31
|
+
"default": "./dist/global-roots.js"
|
|
32
|
+
},
|
|
33
|
+
"#runtime-import": {
|
|
34
|
+
"workerd": "./dist/runtime/import.bun.js",
|
|
35
|
+
"bun": "./dist/runtime/import.bun.js",
|
|
36
|
+
"node": "./dist/runtime/import.node.js",
|
|
37
|
+
"default": "./dist/runtime/import.bun.js"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "bun run script/build.ts",
|
|
42
|
+
"test": "bun test --only-failures",
|
|
43
|
+
"typecheck": "tsgo --noEmit"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@effect/opentelemetry": "4.0.0-beta.101",
|
|
47
|
+
"@effect/platform-node": "4.0.0-beta.101",
|
|
48
|
+
"@npmcli/arborist": "9.4.0",
|
|
49
|
+
"@npmcli/config": "10.8.1",
|
|
50
|
+
"@opentelemetry/api": "1.9.0",
|
|
51
|
+
"@opentelemetry/context-async-hooks": "2.6.1",
|
|
52
|
+
"@opentelemetry/exporter-trace-otlp-http": "0.214.0",
|
|
53
|
+
"@opentelemetry/sdk-trace-base": "2.6.1",
|
|
54
|
+
"@opentelemetry/sdk-trace-node": "2.6.1",
|
|
55
|
+
"cross-spawn": "7.0.6",
|
|
56
|
+
"effect": "4.0.0-beta.101",
|
|
57
|
+
"glob": "13.0.5",
|
|
58
|
+
"mime-types": "3.0.2",
|
|
59
|
+
"minimatch": "10.2.5",
|
|
60
|
+
"npm-package-arg": "13.0.2",
|
|
61
|
+
"resolve.exports": "2.0.3"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@tsconfig/bun": "1.0.9",
|
|
65
|
+
"@types/bun": "1.3.13",
|
|
66
|
+
"@types/cross-spawn": "6.0.6",
|
|
67
|
+
"@types/node": "24.12.2",
|
|
68
|
+
"@types/npm-package-arg": "6.1.4",
|
|
69
|
+
"@types/npmcli__arborist": "6.3.3",
|
|
70
|
+
"@typescript/native-preview": "7.0.0-dev.20251207.1"
|
|
16
71
|
}
|
|
17
72
|
}
|
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {}
|