@fortemi/core 2026.9.2 → 2026.9.4
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 +33 -6
- package/dist/aiwg-index-schema.js +1827 -0
- package/dist/aiwg-index-schema.js.map +1 -1
- package/dist/{aiwg-index-shard-BCdaz0X1.d.ts → aiwg-index-shard-jyT_f8H6.d.ts} +4 -4
- package/dist/aiwg-index-shard.d.ts +1 -1
- package/dist/aiwg-index-shard.js +2193 -23
- package/dist/aiwg-index-shard.js.map +1 -1
- package/dist/index.d.ts +985 -22
- package/dist/index.js +35176 -28087
- package/dist/index.js.map +1 -1
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fortemi/core",
|
|
3
|
-
"version": "2026.9.
|
|
3
|
+
"version": "2026.9.4",
|
|
4
4
|
"description": "Browser-only knowledge management core: PGlite (PostgreSQL WASM), MCP tools, hybrid search, and profile-scoped Knowledge Shard interchange.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fortemi",
|
|
@@ -77,8 +77,11 @@
|
|
|
77
77
|
"@bytecask/core": "^2026.7.5",
|
|
78
78
|
"@noble/hashes": "^1.7.2",
|
|
79
79
|
"ajv": "^8.17.1",
|
|
80
|
+
"buffer": "^6.0.3",
|
|
80
81
|
"fflate": "^0.8.2",
|
|
82
|
+
"inherits": "^2.0.4",
|
|
81
83
|
"uuid": "^13.0.0",
|
|
84
|
+
"wkx": "^0.5.0",
|
|
82
85
|
"zod": "^3.24.0"
|
|
83
86
|
},
|
|
84
87
|
"optionalDependencies": {
|
|
@@ -87,6 +90,7 @@
|
|
|
87
90
|
"devDependencies": {
|
|
88
91
|
"@types/node": "^22.0.0",
|
|
89
92
|
"@vitest/coverage-v8": "^4.1.1",
|
|
93
|
+
"esbuild": "0.27.4",
|
|
90
94
|
"fake-indexeddb": "^6.2.5",
|
|
91
95
|
"tsup": "^8.3.5",
|
|
92
96
|
"typescript": "^5.8.0",
|
|
@@ -97,7 +101,7 @@
|
|
|
97
101
|
"typecheck": "tsc --noEmit",
|
|
98
102
|
"test": "vitest run",
|
|
99
103
|
"test:db-table-parity": "vitest run src/__tests__/db-table-parity",
|
|
100
|
-
"test:portable-contract": "pnpm build && node scripts/generate-record-v1-self-fixture.mjs --verify && pnpm verify:knowledge-shard-contract && vitest run --maxWorkers=2 src/__tests__/aiwg-index.test.ts src/__tests__/aiwg-index-full-shard.test.ts src/__tests__/shard/aiwg-core-v1-projection.test.ts src/__tests__/shard/shard-conformance.spike.test.ts src/__tests__/shard/schema-validator.test.ts src/__tests__/shard/profile-registry.test.ts src/__tests__/shard/presence.test.ts src/__tests__/shard/full-v1-store.test.ts src/__tests__/shard/shard-import.test.ts src/__tests__/shard/core-v1-self-cell.test.ts src/__tests__/shard/fortemi-core-v1-consumer-cell.test.ts src/__tests__/shard/shard-signature.test.ts src/__tests__/shard/shard-tar.test.ts src/__tests__/records/record-store.test.ts src/__tests__/records/record-shard.test.ts src/__tests__/shard/bundled-example-shards.test.ts",
|
|
104
|
+
"test:portable-contract": "pnpm build && node scripts/generate-record-v1-self-fixture.mjs --verify && pnpm verify:knowledge-shard-contract && vitest run --maxWorkers=2 src/__tests__/aiwg-index.test.ts src/__tests__/aiwg-index-full-shard.test.ts src/__tests__/shard/aiwg-core-v1-projection.test.ts src/__tests__/shard/shard-conformance.spike.test.ts src/__tests__/shard/schema-validator.test.ts src/__tests__/shard/profile-registry.test.ts src/__tests__/shard/presence.test.ts src/__tests__/shard/full-v1-store.test.ts src/__tests__/shard/full-v1-public.test.ts src/__tests__/shard/full-v1-references.test.ts src/__tests__/shard/native-note-history.test.ts src/__tests__/shard/native-embeddings.test.ts src/__tests__/shard/native-skos.test.ts src/__tests__/shard/native-provenance.test.ts src/__tests__/shard/native-geometry.test.ts src/__tests__/shard/native-graph.test.ts src/__tests__/shard/native-core.test.ts src/__tests__/shard/native-full-v1-public.test.ts src/__tests__/shard/native-full-v1-presence.test.ts src/__tests__/shard/shard-import.test.ts src/__tests__/shard/core-v1-self-cell.test.ts src/__tests__/shard/fortemi-core-v1-consumer-cell.test.ts src/__tests__/shard/shard-signature.test.ts src/__tests__/shard/shard-tar.test.ts src/__tests__/records/record-store.test.ts src/__tests__/records/record-shard.test.ts src/__tests__/shard/bundled-example-shards.test.ts",
|
|
101
105
|
"test:platform-contract": "node scripts/run-platform-contract.mjs",
|
|
102
106
|
"test:source-upsert-contract": "vitest run src/__tests__/source-upsert-contract.test.ts",
|
|
103
107
|
"verify:platform-contract-receipt": "node scripts/verify-platform-contract-receipt.mjs",
|