btca 0.0.1 → 0.0.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/bin.js +47 -0
- package/dist/btca-darwin-arm64 +0 -0
- package/dist/btca-darwin-x64 +0 -0
- package/dist/btca-linux-arm64 +0 -0
- package/dist/btca-linux-x64 +0 -0
- package/dist/index.js +1777 -4902
- package/package.json +17 -13
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "btca",
|
|
3
3
|
"author": "Ben Davis",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"description": "CLI tool for asking questions about technologies using OpenCode",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
@@ -14,33 +14,37 @@
|
|
|
14
14
|
"ai",
|
|
15
15
|
"docs"
|
|
16
16
|
],
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"bin": {
|
|
18
|
+
"btca": "./bin.js"
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
|
+
"bin.js",
|
|
21
22
|
"dist"
|
|
22
23
|
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
23
27
|
"scripts": {
|
|
24
28
|
"dev": "bun run src",
|
|
25
|
-
"build": "bun build src/index.ts --outdir dist --target
|
|
26
|
-
"
|
|
27
|
-
"
|
|
29
|
+
"build": "bun build src/index.ts --outdir dist --target bun",
|
|
30
|
+
"build:targets": "bun run scripts/build-binaries.ts",
|
|
31
|
+
"build:artifacts": "bun run build && bun run build:targets",
|
|
32
|
+
"prepublishOnly": "bun run build:artifacts",
|
|
33
|
+
"start": "bun dist/index.js",
|
|
28
34
|
"typecheck": "tsc --noEmit",
|
|
29
35
|
"prepare": "effect-language-service patch"
|
|
30
36
|
},
|
|
31
37
|
"devDependencies": {
|
|
32
|
-
"@effect/language-service": "^0.57.1",
|
|
33
|
-
"@types/bun": "latest",
|
|
34
|
-
"typescript": "^5.9.3"
|
|
35
|
-
},
|
|
36
|
-
"dependencies": {
|
|
37
38
|
"@effect/cli": "^0.72.1",
|
|
39
|
+
"@effect/language-service": "^0.57.1",
|
|
38
40
|
"@effect/platform": "^0.93.5",
|
|
39
|
-
"@effect/platform-
|
|
41
|
+
"@effect/platform-bun": "^0.85.0",
|
|
40
42
|
"@effect/printer": "^0.47.0",
|
|
41
43
|
"@effect/printer-ansi": "^0.47.0",
|
|
42
44
|
"@effect/typeclass": "^0.38.0",
|
|
43
45
|
"@opencode-ai/sdk": "^1.0.119",
|
|
44
|
-
"
|
|
46
|
+
"@types/bun": "latest",
|
|
47
|
+
"effect": "^3.19.8",
|
|
48
|
+
"typescript": "^5.9.3"
|
|
45
49
|
}
|
|
46
50
|
}
|