@plurnk/plurnk-execs-all 0.1.0
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 +24 -0
- package/package.json +35 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 PossumTech Laboratories
|
|
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,24 @@
|
|
|
1
|
+
# @plurnk/plurnk-execs-all
|
|
2
|
+
|
|
3
|
+
Batteries-included bundle for [plurnk-service](https://github.com/plurnk/plurnk-service)'s `exec` scheme. **It ships no code** — it's a single dependency that pulls in the [plurnk-execs](https://github.com/plurnk/plurnk-execs) framework plus every first-party runtime executor, **flat**, so one install surfaces them all to the framework's `discover()` scan.
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm i @plurnk/plurnk-execs-all
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Bundles:
|
|
10
|
+
|
|
11
|
+
| | runtimes |
|
|
12
|
+
|---|---|
|
|
13
|
+
| `@plurnk/plurnk-execs-common` | sh, bash, node, python(3), perl, ruby, php, lua, deno, bun, tcl, bc, awk |
|
|
14
|
+
| `@plurnk/plurnk-execs-search` | search + SearXNG categories |
|
|
15
|
+
| `@plurnk/plurnk-execs-sqlite` | sqlite |
|
|
16
|
+
| `@plurnk/plurnk-execs-wasm` | wat, wasm |
|
|
17
|
+
| `@plurnk/plurnk-execs-git` | git, gh |
|
|
18
|
+
| `@plurnk/plurnk-execs-jq` | jq |
|
|
19
|
+
|
|
20
|
+
## Why a bundle, not framework deps
|
|
21
|
+
|
|
22
|
+
The framework stays **contract-only** so it has no circular deps and so its `discover()` scan can find executors at the top level of `node_modules`. This aggregator depends on the daughters *directly* (not through the framework), so npm hoists them flat — discovery sees them. A **third party** publishes their own executor under their own scope and installs it alongside; the same scan finds it, no bundle membership required. The bundle is just the convenient default, never a gate.
|
|
23
|
+
|
|
24
|
+
Want a subset? Skip this and depend on the individual executor packages you want — discovery treats them identically.
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@plurnk/plurnk-execs-all",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Batteries-included bundle for plurnk-service's exec scheme — installs @plurnk/plurnk-execs plus every first-party runtime executor (flat) so one dependency surfaces them all to discovery.",
|
|
5
|
+
"keywords": ["plurnk", "exec", "runtime", "executor", "bundle", "meta"],
|
|
6
|
+
"homepage": "https://github.com/plurnk/plurnk-execs-all#readme",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/plurnk/plurnk-execs-all/issues"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/plurnk/plurnk-execs-all.git"
|
|
13
|
+
},
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=25"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "@wikitopian",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"README.md"
|
|
25
|
+
],
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@plurnk/plurnk-execs": "0.4.3",
|
|
28
|
+
"@plurnk/plurnk-execs-common": "0.2.1",
|
|
29
|
+
"@plurnk/plurnk-execs-search": "0.2.3",
|
|
30
|
+
"@plurnk/plurnk-execs-sqlite": "0.1.3",
|
|
31
|
+
"@plurnk/plurnk-execs-wasm": "0.1.2",
|
|
32
|
+
"@plurnk/plurnk-execs-git": "0.1.1",
|
|
33
|
+
"@plurnk/plurnk-execs-jq": "0.1.1"
|
|
34
|
+
}
|
|
35
|
+
}
|