@xelandernt/skilly 0.0.22
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 +20 -0
- package/package.json +33 -0
- package/vendor/aarch64-apple-darwin/skilly +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @xelandernt/skilly
|
|
2
|
+
|
|
3
|
+
Run the native `skilly` CLI through `npx` without a separate TypeScript or
|
|
4
|
+
JavaScript CLI implementation.
|
|
5
|
+
|
|
6
|
+
## Usage
|
|
7
|
+
|
|
8
|
+
```shell
|
|
9
|
+
npx @xelandernt/skilly --help
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
The package preserves the native CLI's stdio behavior so interactive TUI flows
|
|
13
|
+
and non-interactive automation keep using the same Rust implementation.
|
|
14
|
+
|
|
15
|
+
## Supported targets
|
|
16
|
+
|
|
17
|
+
- macOS arm64
|
|
18
|
+
- macOS x64
|
|
19
|
+
- Linux x64 (glibc)
|
|
20
|
+
- Windows x64
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xelandernt/skilly",
|
|
3
|
+
"version": "0.0.22",
|
|
4
|
+
"description": "Native npm launcher for the skilly CLI.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"bin": {
|
|
7
|
+
"skilly": "dist/bin/skilly.js"
|
|
8
|
+
},
|
|
9
|
+
"type": "commonjs",
|
|
10
|
+
"files": [
|
|
11
|
+
"README.md",
|
|
12
|
+
"dist/bin",
|
|
13
|
+
"dist/lib",
|
|
14
|
+
"vendor"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsc -p tsconfig.json",
|
|
24
|
+
"stage-local-binary": "npm run build && node ./dist/scripts/stage-local-binary.js",
|
|
25
|
+
"test": "npm run build && node --test ./dist/test/targets.test.js ./dist/test/launcher.test.js",
|
|
26
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
27
|
+
"prepack": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/node": "^22.16.5",
|
|
31
|
+
"typescript": "^5.8.3"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
Binary file
|