@coreason/coreason-manifest 1.0.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.
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ // Copyright (c) 2026 CoReason, Inc
3
+ // Licensed under the Prosperity Public License 3.0
4
+ // https://github.com/CoReason-AI/coreason-manifest
5
+ //
6
+ // AUTO-GENERATED — DO NOT EDIT. Regenerate via:
7
+ // uv run python scripts/generate_cross_language_bindings.py
8
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@coreason/coreason-manifest",
3
+ "version": "1.0.0",
4
+ "description": "TypeScript bindings for the CoReason Hollow Data Plane.",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "author": "CoReason, Inc <license@coreason.ai>",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/CoReason-AI/coreason-manifest",
10
+ "directory": "bindings/typescript"
11
+ },
12
+ "homepage": "https://github.com/CoReason-AI/coreason-manifest",
13
+ "keywords": ["coreason", "ontology", "manifest", "schema", "types"],
14
+ "main": "dist/ontology.js",
15
+ "types": "dist/ontology.d.ts",
16
+ "files": ["dist", "README.md"],
17
+ "scripts": {
18
+ "build": "tsc",
19
+ "format": "prettier --write src/"
20
+ },
21
+ "devDependencies": {
22
+ "typescript": "^5.0.0",
23
+ "prettier": "^3.0.0"
24
+ }
25
+ }