@stream44.studio/encapsulate 0.2.0-rc.1

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 ADDED
@@ -0,0 +1,21 @@
1
+ encapsulate
2
+ ===
3
+
4
+ An *experimental* implementation of the [PrivateData.Space](https://privatedata.space) model in TypeScript.
5
+
6
+ ***NOTE:** Not intended for direct use until it matures in light of the projects below.*
7
+
8
+ It is being used to underpin:
9
+ - [github.com/Stream44/turbo44](https://github.com/Stream44/turbo44), a web3 + AI ready workspace
10
+ - [Stream44.Studio](https://stream44.studio), *A **full-stack IDE** for building **embodied distributed systems***.
11
+
12
+ Notes
13
+ ---
14
+
15
+ - The first spine contract is defined and implemented here: [src/spine-contracts/CapsuleSpineContract.v0/](src/spine-contracts/CapsuleSpineContract.v0/)
16
+ - Projector reference implementations are here: [github.com/Stream44/ink-component-projector](https://github.com/Stream44/ink-component-projector)
17
+
18
+ License
19
+ ===
20
+
21
+ (c) 2026 [christoph.diy](https://christoph.diy) • Code: `Apache 2.0` • Text: `CC-BY`
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@stream44.studio/encapsulate",
3
+ "version": "0.2.0-rc.1",
4
+ "type": "module",
5
+ "exports": {
6
+ "./encapsulate": "./src/encapsulate.ts",
7
+ "./spine-contracts/CapsuleSpineContract.v0/Static.v0": "./src/spine-contracts/CapsuleSpineContract.v0/Static.v0.ts",
8
+ "./spine-contracts/CapsuleSpineContract.v0/Membrane.v0": "./src/spine-contracts/CapsuleSpineContract.v0/Membrane.v0.ts",
9
+ "./spine-factories/CapsuleSpineFactory.v0": "./src/spine-factories/CapsuleSpineFactory.v0.ts",
10
+ "./structs/Capsule.v0": "./structs/Capsule.v0.ts"
11
+ },
12
+ "dependencies": {
13
+ "typescript": "^5.9.3",
14
+ "chalk": "^5.6.2"
15
+ },
16
+ "devDependencies": {
17
+ "@types/bun": "^1.3.4",
18
+ "@types/node": "^25.0.3",
19
+ "bun-types": "^1.3.4"
20
+ }
21
+ }