@deleted-ai/deleted 0.1.272
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/README.md +37 -0
- package/THIRD_PARTY_NOTICES +1548 -0
- package/bin/deleted.js +26 -0
- package/bundled/linux-arm64.tar.gz +0 -0
- package/lib/install.js +199 -0
- package/lib/manifest.js +26 -0
- package/lib/paths.js +30 -0
- package/lib/platform.js +25 -0
- package/lib/postinstall.js +14 -0
- package/package.json +33 -0
- package/release-manifest.json +8 -0
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @deleted-ai/deleted
|
|
2
|
+
|
|
3
|
+
npm wrapper for the Deleted AI `deleted` CLI on **Linux arm64** (v0 support floor).
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx @deleted-ai/deleted web
|
|
7
|
+
npx @deleted-ai/deleted init my-box
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
On install (or first run), the package extracts the bundled linux-arm64 release
|
|
11
|
+
binary (or downloads from GitHub Releases when authenticated). No kernel source
|
|
12
|
+
ships in this package.
|
|
13
|
+
|
|
14
|
+
## Requirements
|
|
15
|
+
|
|
16
|
+
- Node.js `^22.19 || >=24`
|
|
17
|
+
- Linux arm64
|
|
18
|
+
|
|
19
|
+
Other platforms print a clear error and defer to the tarball install path
|
|
20
|
+
([`docs/install-deleted.md`](../../docs/install-deleted.md)).
|
|
21
|
+
|
|
22
|
+
## Monorepo / CI
|
|
23
|
+
|
|
24
|
+
When building from source, point install at a local release tree:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
export DELETED_RELEASE_TARBALL="$PWD/target/deleted-release/deleted-linux-arm64-<sha>.tar.gz"
|
|
28
|
+
# or
|
|
29
|
+
export DELETED_RELEASE_DIR="$PWD/target/deleted-release/deleted-linux-arm64"
|
|
30
|
+
npm install ./packages/deleted-npm
|
|
31
|
+
npx deleted web
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
Proprietary — see repository root. `THIRD_PARTY_NOTICES` attributes Rust crate
|
|
37
|
+
licenses for the bundled native binary.
|