@deveco-test/deveco-code 0.1.0-TD.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 opencode
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/bin/deveco ADDED
@@ -0,0 +1,199 @@
1
+ #!/usr/bin/env node
2
+
3
+ const childProcess = require("child_process")
4
+ const fs = require("fs")
5
+ const path = require("path")
6
+ const os = require("os")
7
+
8
+ const forwardedSignals = ["SIGINT", "SIGTERM", "SIGHUP"]
9
+
10
+ function run(target) {
11
+ const child = childProcess.spawn(target, process.argv.slice(2), {
12
+ stdio: "inherit",
13
+ })
14
+
15
+ child.on("error", (error) => {
16
+ console.error(error.message)
17
+ process.exit(1)
18
+ })
19
+
20
+ const forwarders = {}
21
+ for (const signal of forwardedSignals) {
22
+ forwarders[signal] = () => {
23
+ try {
24
+ child.kill(signal)
25
+ } catch {
26
+ // The child may have already exited.
27
+ }
28
+ }
29
+ process.on(signal, forwarders[signal])
30
+ }
31
+
32
+ child.on("exit", (code, signal) => {
33
+ for (const forwardedSignal of forwardedSignals) {
34
+ process.removeListener(forwardedSignal, forwarders[forwardedSignal])
35
+ }
36
+
37
+ if (signal) {
38
+ process.kill(process.pid, signal)
39
+ return
40
+ }
41
+
42
+ process.exit(typeof code === "number" ? code : 0)
43
+ })
44
+ }
45
+
46
+ const envPath = process.env.DEVECO_BIN_PATH
47
+
48
+ const scriptPath = fs.realpathSync(__filename)
49
+ const scriptDir = path.dirname(scriptPath)
50
+
51
+ //
52
+ const cached = path.join(scriptDir, ".deveco")
53
+
54
+ const platformMap = {
55
+ darwin: "darwin",
56
+ linux: "linux",
57
+ win32: "windows",
58
+ }
59
+ const archMap = {
60
+ x64: "x64",
61
+ arm64: "arm64",
62
+ arm: "arm",
63
+ }
64
+
65
+ let platform = platformMap[os.platform()]
66
+ if (!platform) {
67
+ platform = os.platform()
68
+ }
69
+ let arch = archMap[os.arch()]
70
+ if (!arch) {
71
+ arch = os.arch()
72
+ }
73
+ const base = "@deveco-test/deveco-code-" + platform + "-" + arch
74
+ const binary = platform === "windows" ? "deveco.exe" : "deveco"
75
+
76
+ function supportsAvx2() {
77
+ if (arch !== "x64") return false
78
+
79
+ if (platform === "linux") {
80
+ try {
81
+ return /(^|\s)avx2(\s|$)/i.test(fs.readFileSync("/proc/cpuinfo", "utf8"))
82
+ } catch {
83
+ return false
84
+ }
85
+ }
86
+
87
+ if (platform === "darwin") {
88
+ try {
89
+ const result = childProcess.spawnSync("sysctl", ["-n", "hw.optional.avx2_0"], {
90
+ encoding: "utf8",
91
+ timeout: 1500,
92
+ })
93
+ if (result.status !== 0) return false
94
+ return (result.stdout || "").trim() === "1"
95
+ } catch {
96
+ return false
97
+ }
98
+ }
99
+
100
+ if (platform === "windows") {
101
+ const cmd =
102
+ '(Add-Type -MemberDefinition "[DllImport(""kernel32.dll"")] public static extern bool IsProcessorFeaturePresent(int ProcessorFeature);" -Name Kernel32 -Namespace Win32 -PassThru)::IsProcessorFeaturePresent(40)'
103
+
104
+ for (const exe of ["powershell.exe", "pwsh.exe", "pwsh", "powershell"]) {
105
+ try {
106
+ const result = childProcess.spawnSync(exe, ["-NoProfile", "-NonInteractive", "-Command", cmd], {
107
+ encoding: "utf8",
108
+ timeout: 3000,
109
+ windowsHide: true,
110
+ })
111
+ if (result.status !== 0) continue
112
+ const out = (result.stdout || "").trim().toLowerCase()
113
+ if (out === "true" || out === "1") return true
114
+ if (out === "false" || out === "0") return false
115
+ } catch {
116
+ continue
117
+ }
118
+ }
119
+
120
+ return false
121
+ }
122
+
123
+ return false
124
+ }
125
+
126
+ const names = (() => {
127
+ const avx2 = supportsAvx2()
128
+ const baseline = arch === "x64" && !avx2
129
+
130
+ if (platform === "linux") {
131
+ const musl = (() => {
132
+ try {
133
+ if (fs.existsSync("/etc/alpine-release")) return true
134
+ } catch {
135
+ // ignore
136
+ }
137
+
138
+ try {
139
+ const result = childProcess.spawnSync("ldd", ["--version"], { encoding: "utf8" })
140
+ const text = ((result.stdout || "") + (result.stderr || "")).toLowerCase()
141
+ if (text.includes("musl")) return true
142
+ } catch {
143
+ // ignore
144
+ }
145
+
146
+ return false
147
+ })()
148
+
149
+ if (musl) {
150
+ if (arch === "x64") {
151
+ if (baseline) return [`${base}-baseline-musl`, `${base}-musl`, `${base}-baseline`, base]
152
+ return [`${base}-musl`, `${base}-baseline-musl`, base, `${base}-baseline`]
153
+ }
154
+ return [`${base}-musl`, base]
155
+ }
156
+
157
+ if (arch === "x64") {
158
+ if (baseline) return [`${base}-baseline`, base, `${base}-baseline-musl`, `${base}-musl`]
159
+ return [base, `${base}-baseline`, `${base}-musl`, `${base}-baseline-musl`]
160
+ }
161
+ return [base, `${base}-musl`]
162
+ }
163
+
164
+ if (arch === "x64") {
165
+ if (baseline) return [`${base}-baseline`, base]
166
+ return [base, `${base}-baseline`]
167
+ }
168
+ return [base]
169
+ })()
170
+
171
+ function findBinary(startDir) {
172
+ let current = startDir
173
+ for (;;) {
174
+ const modules = path.join(current, "node_modules")
175
+ if (fs.existsSync(modules)) {
176
+ for (const name of names) {
177
+ const candidate = path.join(modules, name, "bin", binary)
178
+ if (fs.existsSync(candidate)) return candidate
179
+ }
180
+ }
181
+ const parent = path.dirname(current)
182
+ if (parent === current) {
183
+ return
184
+ }
185
+ current = parent
186
+ }
187
+ }
188
+
189
+ const resolved = envPath || (fs.existsSync(cached) ? cached : findBinary(scriptDir))
190
+ if (!resolved) {
191
+ console.error(
192
+ "It seems that your package manager failed to install the right version of the deveco CLI for your platform. You can try manually installing " +
193
+ names.map((n) => `\"${n}\"`).join(" or ") +
194
+ " package",
195
+ )
196
+ process.exit(1)
197
+ }
198
+
199
+ run(resolved)
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@deveco-test/deveco-code",
3
+ "bin": {
4
+ "deveco": "./bin/deveco"
5
+ },
6
+ "scripts": {
7
+ "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
8
+ },
9
+ "version": "0.1.0-TD.1",
10
+ "license": "MIT",
11
+ "optionalDependencies": {
12
+ "@deveco-test/deveco-code-windows-x64": "0.1.0-TD.1",
13
+ "@deveco-test/deveco-code-darwin-x64": "0.1.0-TD.1",
14
+ "@deveco-test/deveco-code-darwin-arm64": "0.1.0-TD.1"
15
+ }
16
+ }
@@ -0,0 +1,189 @@
1
+ #!/usr/bin/env node
2
+
3
+ import childProcess from "child_process"
4
+ import fs from "fs"
5
+ import os from "os"
6
+ import path from "path"
7
+ import { createRequire } from "module"
8
+ import { fileURLToPath } from "url"
9
+
10
+ const __dirname = path.dirname(fileURLToPath(import.meta.url))
11
+ const require = createRequire(import.meta.url)
12
+ const packageJson = JSON.parse(fs.readFileSync(path.join(__dirname, "package.json"), "utf8"))
13
+
14
+ const platformMap = {
15
+ darwin: "darwin",
16
+ linux: "linux",
17
+ win32: "windows",
18
+ }
19
+ const archMap = {
20
+ x64: "x64",
21
+ arm64: "arm64",
22
+ arm: "arm",
23
+ }
24
+
25
+ const platform = platformMap[os.platform()] ?? os.platform()
26
+ const arch = archMap[os.arch()] ?? os.arch()
27
+ const base = `@deveco-test/deveco-code-${platform}-${arch}`
28
+ const sourceBinary = platform === "windows" ? "deveco.exe" : "deveco"
29
+ const targetBinary = path.join(__dirname, "bin", "deveco.exe")
30
+
31
+ function supportsAvx2() {
32
+ if (arch !== "x64") return false
33
+
34
+ if (platform === "linux") {
35
+ try {
36
+ return /(^|\s)avx2(\s|$)/i.test(fs.readFileSync("/proc/cpuinfo", "utf8"))
37
+ } catch {
38
+ return false
39
+ }
40
+ }
41
+
42
+ if (platform === "darwin") {
43
+ try {
44
+ const result = childProcess.spawnSync("sysctl", ["-n", "hw.optional.avx2_0"], {
45
+ encoding: "utf8",
46
+ timeout: 1500,
47
+ })
48
+ if (result.status !== 0) return false
49
+ return (result.stdout || "").trim() === "1"
50
+ } catch {
51
+ return false
52
+ }
53
+ }
54
+
55
+ if (platform === "windows") {
56
+ const command =
57
+ '(Add-Type -MemberDefinition "[DllImport(""kernel32.dll"")] public static extern bool IsProcessorFeaturePresent(int ProcessorFeature);" -Name Kernel32 -Namespace Win32 -PassThru)::IsProcessorFeaturePresent(40)'
58
+
59
+ for (const executable of ["powershell.exe", "pwsh.exe", "pwsh", "powershell"]) {
60
+ try {
61
+ const result = childProcess.spawnSync(executable, ["-NoProfile", "-NonInteractive", "-Command", command], {
62
+ encoding: "utf8",
63
+ timeout: 3000,
64
+ windowsHide: true,
65
+ })
66
+ if (result.status !== 0) continue
67
+ const output = (result.stdout || "").trim().toLowerCase()
68
+ if (output === "true" || output === "1") return true
69
+ if (output === "false" || output === "0") return false
70
+ } catch {
71
+ continue
72
+ }
73
+ }
74
+ }
75
+
76
+ return false
77
+ }
78
+
79
+ function isMusl() {
80
+ if (platform !== "linux") return false
81
+
82
+ try {
83
+ if (fs.existsSync("/etc/alpine-release")) return true
84
+ } catch {
85
+ // Ignore filesystem probes that are blocked by the host.
86
+ }
87
+
88
+ try {
89
+ const result = childProcess.spawnSync("ldd", ["--version"], { encoding: "utf8" })
90
+ return `${result.stdout || ""}${result.stderr || ""}`.toLowerCase().includes("musl")
91
+ } catch {
92
+ return false
93
+ }
94
+ }
95
+
96
+ function packageNames() {
97
+ const baseline = arch === "x64" && !supportsAvx2()
98
+
99
+ if (platform === "linux") {
100
+ if (isMusl()) {
101
+ if (arch === "x64")
102
+ return baseline
103
+ ? [`${base}-baseline-musl`, `${base}-musl`, `${base}-baseline`, base]
104
+ : [`${base}-musl`, `${base}-baseline-musl`, base, `${base}-baseline`]
105
+ return [`${base}-musl`, base]
106
+ }
107
+
108
+ if (arch === "x64")
109
+ return baseline
110
+ ? [`${base}-baseline`, base, `${base}-baseline-musl`, `${base}-musl`]
111
+ : [base, `${base}-baseline`, `${base}-musl`, `${base}-baseline-musl`]
112
+ return [base, `${base}-musl`]
113
+ }
114
+
115
+ if (arch === "x64") return baseline ? [`${base}-baseline`, base] : [base, `${base}-baseline`]
116
+ return [base]
117
+ }
118
+
119
+ function resolveBinary(name) {
120
+ const packageJsonPath = require.resolve(`${name}/package.json`)
121
+ const binaryPath = path.join(path.dirname(packageJsonPath), "bin", sourceBinary)
122
+ if (!fs.existsSync(binaryPath)) throw new Error(`Binary not found at ${binaryPath}`)
123
+ return binaryPath
124
+ }
125
+
126
+ function installPackage(name) {
127
+ const version = packageJson.optionalDependencies?.[name]
128
+ if (!version) return
129
+
130
+ const temp = fs.mkdtempSync(path.join(os.tmpdir(), "opencode-install-"))
131
+ try {
132
+ const result = childProcess.spawnSync(
133
+ "npm",
134
+ ["install", "--ignore-scripts", "--no-save", "--loglevel=error", "--prefix", temp, `${name}@${version}`],
135
+ { stdio: "inherit", windowsHide: true },
136
+ )
137
+ if (result.status !== 0) return
138
+ const packageDir = path.join(temp, "node_modules", name)
139
+ copyBinary(path.join(packageDir, "bin", sourceBinary), targetBinary)
140
+ return true
141
+ } finally {
142
+ fs.rmSync(temp, { recursive: true, force: true })
143
+ }
144
+ }
145
+
146
+ function copyBinary(source, target) {
147
+ if (!fs.existsSync(source)) throw new Error(`Binary not found at ${source}`)
148
+ fs.mkdirSync(path.dirname(target), { recursive: true })
149
+ if (fs.existsSync(target)) fs.unlinkSync(target)
150
+ try {
151
+ fs.linkSync(source, target)
152
+ } catch {
153
+ fs.copyFileSync(source, target)
154
+ }
155
+ fs.chmodSync(target, 0o755)
156
+ }
157
+
158
+ function verifyBinary() {
159
+ const result = childProcess.spawnSync(targetBinary, ["--version"], {
160
+ encoding: "utf8",
161
+ stdio: "ignore",
162
+ windowsHide: true,
163
+ })
164
+ return result.status === 0
165
+ }
166
+
167
+ function main() {
168
+ for (const name of packageNames()) {
169
+ try {
170
+ copyBinary(resolveBinary(name), targetBinary)
171
+ if (verifyBinary()) return
172
+ } catch {
173
+ if (installPackage(name) && verifyBinary()) return
174
+ }
175
+ }
176
+
177
+ throw new Error(
178
+ `It seems your package manager failed to install the right opencode CLI package. Try manually installing ${packageNames()
179
+ .map((name) => JSON.stringify(name))
180
+ .join(" or ")}.`,
181
+ )
182
+ }
183
+
184
+ try {
185
+ main()
186
+ } catch (error) {
187
+ console.error(error.message)
188
+ process.exit(1)
189
+ }