@quo-systems/quo 0.1.0 → 0.2.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/README.md +9 -6
- package/SPEC.md +235 -137
- package/dist/being/being.d.ts +22 -0
- package/dist/being/being.js +78 -0
- package/dist/being/digest.d.ts +3 -0
- package/dist/being/digest.js +19 -0
- package/dist/being/index.d.ts +5 -0
- package/dist/being/index.js +6 -0
- package/dist/being/silence.d.ts +10 -0
- package/dist/being/silence.js +29 -0
- package/dist/being/types.d.ts +84 -0
- package/dist/being/types.js +16 -0
- package/dist/conformance/assert.d.ts +11 -0
- package/dist/conformance/assert.js +72 -0
- package/dist/conformance/beings.d.ts +114 -0
- package/dist/conformance/beings.js +126 -0
- package/dist/conformance/estate.d.ts +5 -0
- package/dist/conformance/estate.js +316 -0
- package/dist/conformance/index.d.ts +65 -0
- package/dist/conformance/index.js +448 -0
- package/dist/conformance/reach.d.ts +10 -0
- package/dist/conformance/reach.js +72 -0
- package/dist/conformance/store.d.ts +5 -0
- package/dist/conformance/store.js +97 -0
- package/dist/harbor/core.d.ts +46 -0
- package/dist/harbor/core.js +218 -0
- package/dist/harbor/dial.d.ts +8 -0
- package/dist/harbor/dial.js +45 -0
- package/dist/harbor/index.d.ts +6 -0
- package/dist/harbor/index.js +10 -0
- package/dist/harbor/memory.d.ts +24 -0
- package/dist/harbor/memory.js +68 -0
- package/dist/harbor/reach.d.ts +36 -0
- package/dist/harbor/reach.js +166 -0
- package/dist/harbor/store.d.ts +33 -0
- package/dist/harbor/store.js +41 -0
- package/dist/ward/allowance.d.ts +10 -0
- package/dist/ward/allowance.js +60 -0
- package/dist/ward/arithmetic.d.ts +26 -0
- package/dist/ward/arithmetic.js +159 -0
- package/dist/ward/cells.d.ts +3 -0
- package/dist/ward/cells.js +79 -0
- package/dist/ward/door.d.ts +16 -0
- package/dist/ward/door.js +127 -0
- package/dist/ward/ground.d.ts +15 -0
- package/dist/ward/ground.js +1 -0
- package/dist/ward/heirs.d.ts +14 -0
- package/dist/ward/heirs.js +102 -0
- package/dist/ward/index.d.ts +8 -0
- package/dist/ward/index.js +10 -0
- package/dist/ward/owner.d.ts +32 -0
- package/dist/ward/owner.js +116 -0
- package/dist/ward/partition.d.ts +57 -0
- package/dist/ward/partition.js +64 -0
- package/dist/ward/seal.d.ts +50 -0
- package/dist/ward/seal.js +109 -0
- package/dist/ward/stance.d.ts +19 -0
- package/dist/ward/stance.js +259 -0
- package/dist/ward/ward.d.ts +2 -0
- package/dist/ward/ward.js +197 -0
- package/package.json +21 -29
- package/src/being/index.ts +1 -1
- package/src/being/silence.ts +26 -8
- package/src/being/types.ts +13 -3
- package/src/conformance/beings.ts +5 -5
- package/src/conformance/estate.ts +11 -6
- package/src/conformance/index.ts +14 -12
- package/src/harbor/core.ts +56 -6
- package/src/harbor/dial.ts +1 -1
- package/src/harbor/memory.ts +6 -1
- package/src/ward/door.ts +54 -32
- package/src/ward/ground.ts +6 -2
- package/src/ward/heirs.ts +20 -5
- package/src/ward/owner.ts +4 -3
- package/src/ward/partition.ts +10 -0
- package/src/ward/seal.ts +8 -5
- package/src/ward/stance.ts +20 -14
- package/src/ward/ward.ts +9 -9
- package/vectors/framing.json +7 -1
package/README.md
CHANGED
|
@@ -18,8 +18,10 @@ assumes nothing from any other document, this README included. Read it first.
|
|
|
18
18
|
|
|
19
19
|
## This package
|
|
20
20
|
|
|
21
|
-
A TypeScript implementation, run directly on Node's own type stripping
|
|
22
|
-
|
|
21
|
+
A TypeScript implementation, run directly on Node's own type stripping, with
|
|
22
|
+
no dependencies. The package ships JavaScript with declarations, emitted by
|
|
23
|
+
`npm run build` before every gate and every publish, because Node strips
|
|
24
|
+
types nowhere under `node_modules`.
|
|
23
25
|
|
|
24
26
|
```
|
|
25
27
|
src/being/ the Being side: what a being author imports, if anything
|
|
@@ -80,10 +82,11 @@ a TypeScript ward. `SPEC.md` "The tree" says the whole of it.
|
|
|
80
82
|
|
|
81
83
|
Published from 0.1.0, the first version under this name, with no
|
|
82
84
|
compatibility promise before 1.0.0: the words may still move. `npm pack
|
|
83
|
-
--dry-run` shows what ships: the
|
|
84
|
-
licence — no tests, no configs. The spec ships because it
|
|
85
|
-
source and the vectors are read against. `npm publish`
|
|
86
|
-
first, `check` and `check:terrain`, and refuses on a
|
|
85
|
+
--dry-run` shows what ships: the emitted `dist/`, the source, the vectors,
|
|
86
|
+
the spec, and the licence — no tests, no configs. The spec ships because it
|
|
87
|
+
is the truth the source and the vectors are read against. `npm publish`
|
|
88
|
+
runs both gates first, `check` and `check:terrain`, and refuses on a
|
|
89
|
+
failure.
|
|
87
90
|
|
|
88
91
|
## License
|
|
89
92
|
|