@intuitums/e 0.0.1-beta.9.gd2b45315c43c
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 +21 -0
- package/README.md +8 -0
- package/bin/e +18 -0
- package/package.json +27 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Fischer Hunt
|
|
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/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# e
|
|
2
|
+
|
|
3
|
+
Install with `npm install -g @intuitums/e@beta` or `bun add -g @intuitums/e@beta`.
|
|
4
|
+
|
|
5
|
+
Run `e-beta` to start. See https://e.intuitum.sh/docs for setup.
|
|
6
|
+
|
|
7
|
+
Includes native binaries for macOS and glibc Linux on ARM64 and x86-64.
|
|
8
|
+
No install scripts or JavaScript runtime are needed to run the binary.
|
package/bin/e
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
# Locate the platform dependency installed by npm or bun, then hand over the terminal.
|
|
3
|
+
set -eu
|
|
4
|
+
entry=$0
|
|
5
|
+
while [ -L "$entry" ]; do
|
|
6
|
+
parent=$(CDPATH= cd -P "$(dirname "$entry")" && pwd)
|
|
7
|
+
entry=$(readlink "$entry")
|
|
8
|
+
case "$entry" in /*) ;; *) entry="$parent/$entry" ;; esac
|
|
9
|
+
done
|
|
10
|
+
root=$(CDPATH= cd -P "$(dirname "$entry")/.." && pwd)
|
|
11
|
+
case "$(uname -s)" in Darwin) os=darwin ;; Linux) os=linux ;; *) echo 'e supports macOS and glibc Linux.' >&2; exit 1 ;; esac
|
|
12
|
+
case "$(uname -m)" in arm64|aarch64) cpu=arm64 ;; x86_64|amd64) cpu=x64 ;; *) echo 'e supports ARM64 and x86-64.' >&2; exit 1 ;; esac
|
|
13
|
+
name="e-$os-$cpu"
|
|
14
|
+
for binary in "$root/node_modules/@intuitums/$name/bin/e" "$root/../$name/bin/e"; do
|
|
15
|
+
if [ -x "$binary" ]; then exec "$binary" "$@"; fi
|
|
16
|
+
done
|
|
17
|
+
echo "Missing @intuitums/$name. Reinstall @intuitums/e with optional dependencies enabled. Linux requires glibc." >&2
|
|
18
|
+
exit 1
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.0.1-beta.9.gd2b45315c43c",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"homepage": "https://e.intuitum.sh",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/intuitums/e.git"
|
|
8
|
+
},
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public",
|
|
11
|
+
"tag": "beta"
|
|
12
|
+
},
|
|
13
|
+
"name": "@intuitums/e",
|
|
14
|
+
"description": "A small, extensible coding agent for your terminal",
|
|
15
|
+
"bin": {
|
|
16
|
+
"e-beta": "bin/e"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"bin"
|
|
20
|
+
],
|
|
21
|
+
"optionalDependencies": {
|
|
22
|
+
"@intuitums/e-darwin-arm64": "0.0.1-beta.9.gd2b45315c43c",
|
|
23
|
+
"@intuitums/e-darwin-x64": "0.0.1-beta.9.gd2b45315c43c",
|
|
24
|
+
"@intuitums/e-linux-arm64": "0.0.1-beta.9.gd2b45315c43c",
|
|
25
|
+
"@intuitums/e-linux-x64": "0.0.1-beta.9.gd2b45315c43c"
|
|
26
|
+
}
|
|
27
|
+
}
|