@synapsor/spec 0.1.0 → 0.1.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 +6 -0
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -7,6 +7,12 @@ Cloud/C++. The contract describes trusted context, business resources,
|
|
|
7
7
|
capabilities, workflows, policies, evidence, proposals, receipts, replay, and
|
|
8
8
|
external action intents.
|
|
9
9
|
|
|
10
|
+
Part of the Synapsor OSS toolchain:
|
|
11
|
+
|
|
12
|
+
- [`@synapsor/runner`](https://www.npmjs.com/package/@synapsor/runner): local MCP runtime that serves validated contracts.
|
|
13
|
+
- [`@synapsor/dsl`](https://www.npmjs.com/package/@synapsor/dsl): SQL-like authoring layer that compiles to this spec.
|
|
14
|
+
- [Source and issues on GitHub](https://github.com/Synapsor/Synapsor-Runner).
|
|
15
|
+
|
|
10
16
|
It does not contain local runtime wiring:
|
|
11
17
|
|
|
12
18
|
- no database URLs;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synapsor/spec",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Canonical Synapsor contract schemas, types, validation, and conformance fixtures.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -30,6 +30,15 @@
|
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/Synapsor/Synapsor-Runner.git",
|
|
36
|
+
"directory": "packages/spec"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://github.com/Synapsor/Synapsor-Runner/tree/main/packages/spec#readme",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/Synapsor/Synapsor-Runner/issues"
|
|
41
|
+
},
|
|
33
42
|
"scripts": {
|
|
34
43
|
"build": "tsc -b",
|
|
35
44
|
"test": "vitest run"
|