@standardagents/code 0.14.0-issue.108.1ef8ab-linux-x64-gnu → 0.14.0-issue.108.1ef8ab

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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { main } from '../lib/launcher.mjs'
3
+
4
+ main('standard')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { main } from '../lib/launcher.mjs'
3
+
4
+ main('standardd')
@@ -0,0 +1,114 @@
1
+ import { createHash, createPublicKey, verify } from 'node:crypto'
2
+ import { closeSync, constants, fstatSync, lstatSync, openSync, readSync } from 'node:fs'
3
+ import { join } from 'node:path'
4
+
5
+ export const ARTIFACT_FORMAT = 'standard-npm-native-target-v2'
6
+ export const ARTIFACT_FILES = Object.freeze([
7
+ 'bin/standard', 'bin/standardd', 'bin/tmux', 'licenses/THIRD-PARTY.txt',
8
+ ])
9
+ export const ARTIFACT_TARGETS = Object.freeze([
10
+ 'aarch64-apple-darwin', 'x86_64-apple-darwin',
11
+ 'aarch64-unknown-linux-gnu', 'x86_64-unknown-linux-gnu',
12
+ ])
13
+ // Public trust anchor, not a credential. Never obtain the verification key
14
+ // from the package being verified or a mutable registry response.
15
+ export const ARTIFACT_PUBLIC_KEY = `-----BEGIN PUBLIC KEY-----
16
+ MCowBQYDK2VwAyEAk+Ndu0WtdSgUFkraXP5CAUlQqzm+EN/My2AwkoPOMqg=
17
+ -----END PUBLIC KEY-----
18
+ `
19
+
20
+ export function validArtifactVersion(version) {
21
+ return typeof version === 'string'
22
+ && /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?$/.test(version)
23
+ && (version.match(/^[^-]+-(.*)$/)?.[1].split('.') ?? []).every(part => !/^0\d+$/.test(part))
24
+ }
25
+
26
+ function regularFile(path, limit) {
27
+ const descriptor = openSync(path, constants.O_RDONLY | constants.O_NOFOLLOW)
28
+ try {
29
+ const metadata = fstatSync(descriptor)
30
+ if (!metadata.isFile() || metadata.size < 1 || metadata.size > limit) throw new Error(`Invalid artifact file: ${path}`)
31
+ return { descriptor, metadata }
32
+ } catch (error) { closeSync(descriptor); throw error }
33
+ }
34
+
35
+ function boundedBytes(path, limit) {
36
+ const { descriptor } = regularFile(path, limit)
37
+ try {
38
+ const buffer = Buffer.alloc(limit + 1)
39
+ let size = 0
40
+ while (size <= limit) {
41
+ const count = readSync(descriptor, buffer, size, buffer.length - size, null)
42
+ if (!count) return buffer.subarray(0, size)
43
+ size += count
44
+ }
45
+ throw new Error(`Artifact exceeds size limit: ${path}`)
46
+ } finally { closeSync(descriptor) }
47
+ }
48
+
49
+ export function verifyNativeArtifact(root, expected = {}, publicKey = ARTIFACT_PUBLIC_KEY) {
50
+ for (const directory of [root, join(root, 'bin'), join(root, 'licenses')]) {
51
+ if (!lstatSync(directory).isDirectory()) throw new Error(`Invalid artifact directory: ${directory}`)
52
+ }
53
+ const bytes = boundedBytes(join(root, 'manifest.json'), 64 * 1024)
54
+ const signature = boundedBytes(join(root, 'manifest.sig'), 256).toString('utf8').trim()
55
+ const key = createPublicKey(publicKey)
56
+ if (key.asymmetricKeyType !== 'ed25519' || !verify(null, bytes, key, Buffer.from(signature, 'base64'))) {
57
+ throw new Error('Native artifact signature is invalid')
58
+ }
59
+ const manifest = JSON.parse(bytes)
60
+ if (manifest.schema !== 2 || manifest.format !== ARTIFACT_FORMAT
61
+ || manifest.repository !== 'standardagents/code-rs'
62
+ || !ARTIFACT_TARGETS.includes(manifest.target)
63
+ || !/^[0-9a-f]{40}$/.test(manifest.commit)
64
+ || !validArtifactVersion(manifest.version)
65
+ || ['commit', 'version', 'target'].some(name => expected[name] != null && manifest[name] !== expected[name])
66
+ || manifest.signing?.algorithm !== 'ed25519') throw new Error('Native artifact identity is invalid')
67
+ if (!Array.isArray(manifest.files) || manifest.files.map(file => file.path).sort().join(',') !== [...ARTIFACT_FILES].sort().join(',')) {
68
+ throw new Error('Native artifact file manifest is invalid')
69
+ }
70
+ const tmux = manifest.files.find(file => file.path === 'bin/tmux')
71
+ if (manifest.runtime?.tmuxVersion !== '3.7' || manifest.runtime.tmuxSha256 !== tmux.sha256) {
72
+ throw new Error('Native artifact tmux identity is invalid')
73
+ }
74
+ if (manifest.target.endsWith('-apple-darwin')
75
+ && (manifest.signing.platformCodeSignature !== 'apple-developer-id'
76
+ || manifest.signing.notarization?.status !== 'Accepted'
77
+ || !/^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$/i.test(manifest.signing.notarization?.submissionId ?? ''))) {
78
+ throw new Error('macOS artifact lacks signed notarization acceptance')
79
+ }
80
+ if (manifest.target.endsWith('-unknown-linux-gnu')
81
+ && !/^\d+\.\d+(?:\.\d+)?$/.test(manifest.runtime.minimumGlibc ?? '')) throw new Error('Linux artifact lacks its glibc requirement')
82
+ const buffer = Buffer.alloc(1024 * 1024)
83
+ for (const file of manifest.files) {
84
+ if (!Number.isSafeInteger(file.size) || !/^[0-9a-f]{64}$/.test(file.sha256)) throw new Error('Native artifact file metadata is invalid')
85
+ const path = join(root, file.path)
86
+ const { descriptor, metadata } = regularFile(path, 256 * 1024 * 1024)
87
+ try {
88
+ if (metadata.size !== file.size) throw new Error(`Native artifact size mismatch: ${file.path}`)
89
+ const hash = createHash('sha256')
90
+ let size = 0
91
+ for (;;) {
92
+ const count = readSync(descriptor, buffer, 0, buffer.length, null)
93
+ if (!count) break
94
+ size += count
95
+ if (size > file.size) throw new Error(`Native artifact grew while verifying: ${file.path}`)
96
+ hash.update(buffer.subarray(0, count))
97
+ }
98
+ if (size !== file.size || hash.digest('hex') !== file.sha256) throw new Error(`Native artifact digest mismatch: ${file.path}`)
99
+ } finally { closeSync(descriptor) }
100
+ }
101
+ return manifest
102
+ }
103
+
104
+ export function requireCompatibleGlibc(manifest, runtimeVersion) {
105
+ if (!manifest.target.endsWith('-unknown-linux-gnu')) return
106
+ const minimum = manifest.runtime.minimumGlibc
107
+ if (!/^\d+\.\d+(?:\.\d+)?$/.test(runtimeVersion ?? '')) throw new Error('Cannot determine this machine’s glibc version')
108
+ const actual = runtimeVersion.split('.').map(Number)
109
+ const required = minimum.split('.').map(Number)
110
+ for (let index = 0; index < 3; index++) {
111
+ if ((actual[index] ?? 0) > (required[index] ?? 0)) return
112
+ if ((actual[index] ?? 0) < (required[index] ?? 0)) throw new Error(`This Standard build requires glibc ${minimum}; this machine has ${runtimeVersion}`)
113
+ }
114
+ }
@@ -0,0 +1,75 @@
1
+ import { spawnSync } from 'node:child_process'
2
+ import { readFileSync, realpathSync, statSync } from 'node:fs'
3
+ import { createRequire } from 'node:module'
4
+ import { dirname, join } from 'node:path'
5
+ import process from 'node:process'
6
+
7
+ import { platformPackage } from './platform.mjs'
8
+ import { requireCompatibleGlibc, verifyNativeArtifact } from './artifact.mjs'
9
+
10
+ const require = createRequire(import.meta.url)
11
+ const COMMANDS = new Set(['standard', 'standardd'])
12
+
13
+ export function resolveBinary(command, options = {}) {
14
+ if (!COMMANDS.has(command)) {
15
+ throw new Error(`Unknown Standard executable: ${command}`)
16
+ }
17
+ const environment = options.environment ?? process.env
18
+ const overrideDirectory = environment.STANDARD_CODE_BINARY_DIR
19
+ const binaryPath = overrideDirectory
20
+ ? join(overrideDirectory, command)
21
+ : resolvePackagedBinary(command, options)
22
+ const stat = statSync(binaryPath)
23
+ if (!stat.isFile()) {
24
+ throw new Error(`Resolved Standard executable is not a file: ${binaryPath}`)
25
+ }
26
+ return binaryPath
27
+ }
28
+
29
+ function resolvePackagedBinary(command, options) {
30
+ const platform = platformPackage(
31
+ options.platform,
32
+ options.architecture,
33
+ options.report,
34
+ )
35
+ const resolve = options.resolve ?? require.resolve
36
+ try {
37
+ const binary = realpathSync(resolve(`${platform.packageName}/bin/${command}`))
38
+ const version = JSON.parse(readFileSync(new URL('../package.json', import.meta.url))).version
39
+ const artifact = verifyNativeArtifact(dirname(dirname(binary)), { version, target: platform.rustTarget })
40
+ const report = options.report ?? process.report
41
+ requireCompatibleGlibc(artifact, report?.getReport()?.header?.glibcVersionRuntime)
42
+ return binary
43
+ } catch (error) {
44
+ const detail = error instanceof Error ? error.message : String(error)
45
+ throw new Error(
46
+ `The native package ${platform.packageName} is missing or incomplete. `
47
+ + `Reinstall @standardagents/code for this platform. (${detail})`,
48
+ )
49
+ }
50
+ }
51
+
52
+ export function spawnBinary(command, args, options = {}) {
53
+ const binary = resolveBinary(command, options)
54
+ return spawnSync(binary, args, {
55
+ stdio: options.stdio ?? 'inherit',
56
+ env: options.environment ?? process.env,
57
+ })
58
+ }
59
+
60
+ export function main(command) {
61
+ try {
62
+ const result = spawnBinary(command, process.argv.slice(2))
63
+ if (result.error) throw result.error
64
+ if (result.signal) {
65
+ console.error(`${command} terminated by ${result.signal}`)
66
+ process.exitCode = 1
67
+ return
68
+ }
69
+ process.exitCode = result.status ?? 1
70
+ } catch (error) {
71
+ const detail = error instanceof Error ? error.message : String(error)
72
+ console.error(`${command}: ${detail}`)
73
+ process.exitCode = 1
74
+ }
75
+ }
package/lib/legacy.mjs ADDED
@@ -0,0 +1,25 @@
1
+ import { existsSync } from 'node:fs'
2
+ import { homedir } from 'node:os'
3
+ import { join } from 'node:path'
4
+
5
+ const LEGACY_PATHS = [
6
+ ['credentials', ['.standardagents', 'credentials']],
7
+ ['machine identity', ['.standardagents', 'machine.json']],
8
+ ['MCP configuration', ['.standardagents', 'mcp.json']],
9
+ ]
10
+
11
+ export function detectLegacyInstallation(home = homedir()) {
12
+ return LEGACY_PATHS
13
+ .map(([label, segments]) => ({ label, path: join(home, ...segments) }))
14
+ .filter((entry) => existsSync(entry.path))
15
+ }
16
+
17
+ export function legacyNotice(entries) {
18
+ if (entries.length === 0) return null
19
+ const labels = entries.map((entry) => entry.label).join(', ')
20
+ return [
21
+ 'Standard 1.x is a replacement product, not an in-place upgrade of Standard Code 0.x.',
22
+ `Legacy ${labels} were detected and have not been read, changed, or removed.`,
23
+ 'The migration workflow will offer explicit backup and legacy-daemon removal in a later phase.',
24
+ ].join(' ')
25
+ }
@@ -0,0 +1,50 @@
1
+ const PLATFORMS = new Map([
2
+ ['darwin:arm64', {
3
+ packageName: '@standardagents/code-darwin-arm64',
4
+ rustTarget: 'aarch64-apple-darwin',
5
+ }],
6
+ ['darwin:x64', {
7
+ packageName: '@standardagents/code-darwin-x64',
8
+ rustTarget: 'x86_64-apple-darwin',
9
+ }],
10
+ ['linux:arm64', {
11
+ packageName: '@standardagents/code-linux-arm64-gnu',
12
+ rustTarget: 'aarch64-unknown-linux-gnu',
13
+ }],
14
+ ['linux:x64', {
15
+ packageName: '@standardagents/code-linux-x64-gnu',
16
+ rustTarget: 'x86_64-unknown-linux-gnu',
17
+ }],
18
+ ])
19
+
20
+ export function platformPackage(
21
+ platform = process.platform,
22
+ architecture = process.arch,
23
+ report = process.report,
24
+ ) {
25
+ const entry = PLATFORMS.get(`${platform}:${architecture}`)
26
+ if (!entry) {
27
+ throw new Error(
28
+ `Standard does not yet provide binaries for ${platform}/${architecture}; `
29
+ + 'Phase 0 supports macOS and glibc Linux on arm64/x64.',
30
+ )
31
+ }
32
+ if (platform === 'linux' && !isGlibc(report)) {
33
+ throw new Error(
34
+ 'Standard Phase 0 Linux packages require glibc; a musl build is not published yet.',
35
+ )
36
+ }
37
+ return entry
38
+ }
39
+
40
+ export function supportedPlatforms() {
41
+ return [...PLATFORMS.values()].map((entry) => ({ ...entry }))
42
+ }
43
+
44
+ function isGlibc(report) {
45
+ try {
46
+ return Boolean(report?.getReport()?.header?.glibcVersionRuntime)
47
+ } catch {
48
+ return false
49
+ }
50
+ }
package/package.json CHANGED
@@ -1,29 +1,36 @@
1
1
  {
2
2
  "name": "@standardagents/code",
3
- "version": "0.14.0-issue.108.1ef8ab-linux-x64-gnu",
4
- "description": "Standard native binaries for linux-x64-gnu.",
3
+ "version": "0.14.0-issue.108.1ef8ab",
4
+ "description": "Platform launcher for the Standard universal terminal network.",
5
+ "type": "module",
6
+ "license": "UNLICENSED",
5
7
  "repository": {
6
8
  "type": "git",
7
9
  "url": "git+https://github.com/standardagents/code-rs.git"
8
10
  },
9
- "license": "UNLICENSED",
10
- "os": [
11
- "linux"
12
- ],
13
- "cpu": [
14
- "x64"
15
- ],
16
- "libc": [
17
- "glibc"
18
- ],
19
- "files": [
20
- "bin",
21
- "licenses",
22
- "manifest.json",
23
- "manifest.sig"
24
- ],
25
11
  "publishConfig": {
26
12
  "access": "public",
27
13
  "registry": "https://registry.npmjs.org/"
14
+ },
15
+ "engines": {
16
+ "node": ">=20"
17
+ },
18
+ "bin": {
19
+ "standard": "bin/standard.mjs",
20
+ "standardd": "bin/standardd.mjs"
21
+ },
22
+ "files": [
23
+ "bin",
24
+ "lib",
25
+ "postinstall.mjs"
26
+ ],
27
+ "scripts": {
28
+ "postinstall": "node postinstall.mjs"
29
+ },
30
+ "optionalDependencies": {
31
+ "@standardagents/code-darwin-arm64": "npm:@standardagents/code@0.14.0-issue.108.1ef8ab-darwin-arm64",
32
+ "@standardagents/code-darwin-x64": "npm:@standardagents/code@0.14.0-issue.108.1ef8ab-darwin-x64",
33
+ "@standardagents/code-linux-arm64-gnu": "npm:@standardagents/code@0.14.0-issue.108.1ef8ab-linux-arm64-gnu",
34
+ "@standardagents/code-linux-x64-gnu": "npm:@standardagents/code@0.14.0-issue.108.1ef8ab-linux-x64-gnu"
28
35
  }
29
36
  }
@@ -0,0 +1,16 @@
1
+ import { chmodSync } from 'node:fs'
2
+
3
+ import { detectLegacyInstallation, legacyNotice } from './lib/legacy.mjs'
4
+ import { resolveBinary } from './lib/launcher.mjs'
5
+
6
+ const notice = legacyNotice(detectLegacyInstallation())
7
+ if (notice) console.warn(`\n${notice}\n`)
8
+
9
+ for (const command of ['standard', 'standardd']) {
10
+ try {
11
+ chmodSync(resolveBinary(command), 0o755)
12
+ } catch (error) {
13
+ const detail = error instanceof Error ? error.message : String(error)
14
+ console.warn(`@standardagents/code: ${detail}`)
15
+ }
16
+ }
package/bin/standard DELETED
Binary file
package/bin/standardd DELETED
Binary file
package/bin/tmux DELETED
Binary file
@@ -1,152 +0,0 @@
1
- libevent.txt
2
- ============
3
- Libevent is available for use under the following license, commonly known
4
- as the 3-clause (or "modified") BSD license:
5
-
6
- ==============================
7
- Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
8
- Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
9
-
10
- Redistribution and use in source and binary forms, with or without
11
- modification, are permitted provided that the following conditions
12
- are met:
13
- 1. Redistributions of source code must retain the above copyright
14
- notice, this list of conditions and the following disclaimer.
15
- 2. Redistributions in binary form must reproduce the above copyright
16
- notice, this list of conditions and the following disclaimer in the
17
- documentation and/or other materials provided with the distribution.
18
- 3. The name of the author may not be used to endorse or promote products
19
- derived from this software without specific prior written permission.
20
-
21
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22
- IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24
- IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
- ==============================
32
-
33
- Portions of Libevent are based on works by others, also made available by
34
- them under the three-clause BSD license above. The copyright notices are
35
- available in the corresponding source files; the license is as above. Here's
36
- a list:
37
-
38
- log.c:
39
- Copyright (c) 2000 Dug Song <dugsong@monkey.org>
40
- Copyright (c) 1993 The Regents of the University of California.
41
-
42
- strlcpy.c:
43
- Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
44
-
45
- win32select.c:
46
- Copyright (c) 2003 Michael A. Davis <mike@datanerds.net>
47
-
48
- evport.c:
49
- Copyright (c) 2007 Sun Microsystems
50
-
51
- ht-internal.h:
52
- Copyright (c) 2002 Christopher Clark
53
-
54
- minheap-internal.h:
55
- Copyright (c) 2006 Maxim Yegorushkin <maxim.yegorushkin@gmail.com>
56
-
57
- ==============================
58
-
59
- The arc4module is available under the following, sometimes called the
60
- "OpenBSD" license:
61
-
62
- Copyright (c) 1996, David Mazieres <dm@uun.org>
63
- Copyright (c) 2008, Damien Miller <djm@openbsd.org>
64
-
65
- Permission to use, copy, modify, and distribute this software for any
66
- purpose with or without fee is hereby granted, provided that the above
67
- copyright notice and this permission notice appear in all copies.
68
-
69
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
70
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
71
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
72
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
73
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
74
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
75
- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
76
-
77
- ==============================
78
-
79
- The Windows timer code is based on code from libutp, which is
80
- distributed under this license, sometimes called the "MIT" license.
81
-
82
-
83
- Copyright (c) 2010 BitTorrent, Inc.
84
-
85
- Permission is hereby granted, free of charge, to any person obtaining a copy
86
- of this software and associated documentation files (the "Software"), to deal
87
- in the Software without restriction, including without limitation the rights
88
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
89
- copies of the Software, and to permit persons to whom the Software is
90
- furnished to do so, subject to the following conditions:
91
-
92
- The above copyright notice and this permission notice shall be included in
93
- all copies or substantial portions of the Software.
94
-
95
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
96
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
97
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
98
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
99
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
100
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
101
- THE SOFTWARE.
102
-
103
-
104
- ncurses.txt
105
- ===========
106
- Copyright 2018-2024,2025 Thomas E. Dickey
107
- Copyright 1998-2017,2018 Free Software Foundation, Inc.
108
-
109
- Permission is hereby granted, free of charge, to any person obtaining a
110
- copy of this software and associated documentation files (the
111
- "Software"), to deal in the Software without restriction, including
112
- without limitation the rights to use, copy, modify, merge, publish,
113
- distribute, distribute with modifications, sublicense, and/or sell
114
- copies of the Software, and to permit persons to whom the Software is
115
- furnished to do so, subject to the following conditions:
116
-
117
- The above copyright notice and this permission notice shall be included
118
- in all copies or substantial portions of the Software.
119
-
120
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
121
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
122
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
123
- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
124
- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
125
- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
126
- THE USE OR OTHER DEALINGS IN THE SOFTWARE.
127
-
128
- Except as contained in this notice, the name(s) of the above copyright
129
- holders shall not be used in advertising or otherwise to promote the
130
- sale, use or other dealings in this Software without prior written
131
- authorization.
132
-
133
- -- vile:txtmode fc=72
134
- -- $Id: COPYING,v 1.14 2025/01/04 10:53:46 tom Exp $
135
-
136
-
137
- tmux.txt
138
- ========
139
- Copyright (c) Various Authors
140
-
141
- Permission to use, copy, modify, and distribute this software for any
142
- purpose with or without fee is hereby granted, provided that the above
143
- copyright notice and this permission notice appear in all copies.
144
-
145
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
146
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
147
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
148
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
149
- WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
150
- IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
151
- OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
152
-
package/manifest.json DELETED
@@ -1 +0,0 @@
1
- {"schema":2,"format":"standard-npm-native-target-v2","repository":"standardagents/code-rs","commit":"1ef8abffa9ba992e83d6cbd1ef2be585996389e8","version":"0.14.0-issue.108.1ef8ab","target":"x86_64-unknown-linux-gnu","runtime":{"tmuxVersion":"3.7","tmuxSha256":"e17f10e576181cc4e4aeb44567b1505f5bbe4a3680666318102758e7134f0922","minimumGlibc":"2.39"},"signing":{"algorithm":"ed25519","keyId":"team-2026-1","platformCodeSignature":"ed25519-only"},"files":[{"path":"bin/standard","size":13161616,"sha256":"8d8c2960fda03ac42b498c8424980ec3f8c31d6abb3375d8231f9f687c0aa459"},{"path":"bin/standardd","size":14889904,"sha256":"6bf3a1508066d158899aa2395054549a97e1eb89412df7e856034a2e01b524fa"},{"path":"bin/tmux","size":1724096,"sha256":"e17f10e576181cc4e4aeb44567b1505f5bbe4a3680666318102758e7134f0922"},{"path":"licenses/THIRD-PARTY.txt","size":6779,"sha256":"fc410e91ff375a3057837d3029ec2626e6110a05f69b6fee7ca4e9f588b1a294"}]}
package/manifest.sig DELETED
@@ -1 +0,0 @@
1
- dtOlidMa+wKS8/xuTURZ3xUf0bvTsQ74NujpZp/QRX6nwwz0kPHm0M+EjjId+FryImxxC2XinGcQDjGhGk9VDg==