@plurnk/plurnk-schemes-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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +21 -0
  3. 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,21 @@
1
+ # @plurnk/plurnk-schemes-all
2
+
3
+ Batteries-included bundle for [plurnk-service](https://github.com/plurnk/plurnk-service)'s external `scheme` discovery. **It ships no code** — it's a single dependency that pulls in every first-party [`@plurnk/plurnk-schemes-*`](https://github.com/plurnk/plurnk-schemes) sibling, **flat**, so one install surfaces them all to the service's scope-agnostic `node_modules` scan (`plurnk.kind:"scheme"`).
4
+
5
+ ```
6
+ npm i @plurnk/plurnk-schemes-all
7
+ ```
8
+
9
+ Bundles:
10
+
11
+ | | scheme |
12
+ |---|---|
13
+ | `@plurnk/plurnk-schemes-http` | `http://`, `https://` (fetch + headless-Chromium render) |
14
+
15
+ ## Why a bundle, not framework deps
16
+
17
+ The framework — [`@plurnk/plurnk-schemes`](https://github.com/plurnk/plurnk-schemes) — stays **contract-only** so it has no circular deps and so service's discovery scan can find scheme siblings at the top level of `node_modules`. This aggregator depends on the daughters *directly*, so npm hoists them flat — discovery sees them. The framework arrives transitively as each daughter's exact peer; it is **not** a dependency here (it declares no `plurnk.kind`, so the scan ignores it anyway).
18
+
19
+ A **third party** publishes their own scheme under their own scope (`@acme/acme-scheme-foo`, `plurnk.kind:"scheme"`) and installs it alongside — service's scan finds it by kind, no bundle membership required (plurnk-service#227). The bundle is just the convenient first-party default, never a gate.
20
+
21
+ Want a subset? Skip this and depend on the individual scheme packages you want — discovery treats them identically.
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@plurnk/plurnk-schemes-all",
3
+ "version": "0.1.0",
4
+ "description": "Batteries-included bundle for plurnk-service's external scheme discovery — installs every first-party @plurnk/plurnk-schemes-* sibling (flat) so one dependency surfaces them all to the scan.",
5
+ "keywords": [
6
+ "plurnk",
7
+ "scheme",
8
+ "uri",
9
+ "bundle",
10
+ "meta"
11
+ ],
12
+ "homepage": "https://github.com/plurnk/plurnk-schemes-all#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/plurnk/plurnk-schemes-all/issues"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/plurnk/plurnk-schemes-all.git"
19
+ },
20
+ "engines": {
21
+ "node": ">=25"
22
+ },
23
+ "license": "MIT",
24
+ "author": "@wikitopian",
25
+ "type": "module",
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "files": [
30
+ "README.md"
31
+ ],
32
+ "dependencies": {
33
+ "@plurnk/plurnk-schemes-http": "0.2.0"
34
+ }
35
+ }