@xenosystem/blocks 0.4.1 → 0.6.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/dist/auth/index.js +2 -0
- package/dist/chunk-2KG3PWR4.js +17 -0
- package/dist/chunk-DJJGZ6U4.js +215 -0
- package/dist/data/duckdb.d.ts +123 -0
- package/dist/data/duckdb.js +142 -0
- package/dist/data/index.d.ts +3255 -0
- package/dist/data/index.js +7185 -0
- package/dist/edit/index.d.ts +6454 -0
- package/dist/edit/index.js +14471 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -1
- package/dist/ops/index.js +2 -1
- package/dist/time/index.d.ts +2261 -0
- package/dist/time/index.js +4658 -0
- package/dist/transport-B1cdciP8.d.ts +787 -0
- package/dist/trust/index.js +2 -0
- package/dist/{xterm-R3GIKSHA.js → xterm-R3ZKBPPC.js} +1 -0
- package/package.json +27 -3
package/dist/trust/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenosystem/blocks",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "XENO Blocks \u2014 rung 3 of the front ladder: components composed into a contract-bearing unit (manifest: ports, intents, commands, agent surface), rendered by @xenosystem/workbench. ONE package, one subpath per family (/auth, /edit, /data, /time, /ops, /trust, /agent), one named export per block \u2014 XENO PACKAGE NAMING - STANDARD.md.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -21,6 +21,22 @@
|
|
|
21
21
|
"./ops": {
|
|
22
22
|
"types": "./dist/ops/index.d.ts",
|
|
23
23
|
"import": "./dist/ops/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./time": {
|
|
26
|
+
"types": "./dist/time/index.d.ts",
|
|
27
|
+
"import": "./dist/time/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./data": {
|
|
30
|
+
"types": "./dist/data/index.d.ts",
|
|
31
|
+
"import": "./dist/data/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./data/duckdb": {
|
|
34
|
+
"types": "./dist/data/duckdb.d.ts",
|
|
35
|
+
"import": "./dist/data/duckdb.js"
|
|
36
|
+
},
|
|
37
|
+
"./edit": {
|
|
38
|
+
"types": "./dist/edit/index.d.ts",
|
|
39
|
+
"import": "./dist/edit/index.js"
|
|
24
40
|
}
|
|
25
41
|
},
|
|
26
42
|
"files": [
|
|
@@ -44,7 +60,10 @@
|
|
|
44
60
|
"@xenosystem/block-sdk": "^0.1.1",
|
|
45
61
|
"@xenosystem/tree-core": "^0.1.0",
|
|
46
62
|
"@xterm/xterm": ">=5.5.0",
|
|
47
|
-
"@xterm/addon-fit": ">=0.10.0"
|
|
63
|
+
"@xterm/addon-fit": ">=0.10.0",
|
|
64
|
+
"@xenosystem/time-core": "^0.1.0",
|
|
65
|
+
"@xenosystem/data-core": "^0.1.0",
|
|
66
|
+
"@duckdb/duckdb-wasm": ">=1.28.0"
|
|
48
67
|
},
|
|
49
68
|
"devDependencies": {
|
|
50
69
|
"@types/node": "^22.0.0",
|
|
@@ -64,7 +83,9 @@
|
|
|
64
83
|
"@xenosystem/block-sdk": "^0.1.1",
|
|
65
84
|
"@xenosystem/tree-core": "^0.1.0",
|
|
66
85
|
"@xterm/xterm": "^6.0.0",
|
|
67
|
-
"@xterm/addon-fit": "^0.11.0"
|
|
86
|
+
"@xterm/addon-fit": "^0.11.0",
|
|
87
|
+
"@xenosystem/time-core": "^0.1.0",
|
|
88
|
+
"@xenosystem/data-core": "^0.1.0"
|
|
68
89
|
},
|
|
69
90
|
"publishConfig": {
|
|
70
91
|
"access": "public"
|
|
@@ -75,6 +96,9 @@
|
|
|
75
96
|
},
|
|
76
97
|
"@xterm/addon-fit": {
|
|
77
98
|
"optional": true
|
|
99
|
+
},
|
|
100
|
+
"@duckdb/duckdb-wasm": {
|
|
101
|
+
"optional": true
|
|
78
102
|
}
|
|
79
103
|
}
|
|
80
104
|
}
|