@contractspec/module.context-storage 0.1.2

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/package.json ADDED
@@ -0,0 +1,129 @@
1
+ {
2
+ "name": "@contractspec/module.context-storage",
3
+ "version": "0.1.2",
4
+ "description": "Context storage module with persistence adapters",
5
+ "keywords": [
6
+ "contractspec",
7
+ "context",
8
+ "snapshot",
9
+ "storage"
10
+ ],
11
+ "types": "./dist/index.d.ts",
12
+ "type": "module",
13
+ "scripts": {
14
+ "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
15
+ "publish:pkg:canary": "bun publish:pkg --tag canary",
16
+ "build": "bun run prebuild && bun run build:bundle && bun run build:types",
17
+ "build:bundle": "contractspec-bun-build transpile",
18
+ "build:types": "contractspec-bun-build types",
19
+ "dev": "contractspec-bun-build dev",
20
+ "clean": "rimraf dist .turbo",
21
+ "lint": "bun lint:fix",
22
+ "lint:fix": "eslint src --fix",
23
+ "lint:check": "eslint src",
24
+ "prebuild": "contractspec-bun-build prebuild",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "dependencies": {
28
+ "@contractspec/lib.context-storage": "0.1.0",
29
+ "@contractspec/lib.schema": "3.1.0",
30
+ "@contractspec/lib.contracts-integrations": "3.1.1",
31
+ "@contractspec/lib.knowledge": "3.1.1"
32
+ },
33
+ "devDependencies": {
34
+ "@contractspec/tool.typescript": "3.1.0",
35
+ "@contractspec/tool.bun": "3.1.0",
36
+ "typescript": "^5.9.3"
37
+ },
38
+ "exports": {
39
+ ".": {
40
+ "types": "./dist/index.d.ts",
41
+ "bun": "./dist/index.js",
42
+ "node": "./dist/node/index.js",
43
+ "default": "./dist/index.js"
44
+ },
45
+ "./entities": {
46
+ "types": "./dist/entities/index.d.ts",
47
+ "bun": "./dist/entities/index.js",
48
+ "node": "./dist/node/entities/index.js",
49
+ "default": "./dist/entities/index.js"
50
+ },
51
+ "./entities/index": {
52
+ "types": "./dist/entities/index.d.ts",
53
+ "bun": "./dist/entities/index.js",
54
+ "node": "./dist/node/entities/index.js",
55
+ "default": "./dist/entities/index.js"
56
+ },
57
+ "./pipeline/context-snapshot-pipeline": {
58
+ "types": "./dist/pipeline/context-snapshot-pipeline.d.ts",
59
+ "bun": "./dist/pipeline/context-snapshot-pipeline.js",
60
+ "node": "./dist/node/pipeline/context-snapshot-pipeline.js",
61
+ "default": "./dist/pipeline/context-snapshot-pipeline.js"
62
+ },
63
+ "./storage": {
64
+ "types": "./dist/storage/index.d.ts",
65
+ "bun": "./dist/storage/index.js",
66
+ "node": "./dist/node/storage/index.js",
67
+ "default": "./dist/storage/index.js"
68
+ },
69
+ "./storage/index": {
70
+ "types": "./dist/storage/index.d.ts",
71
+ "bun": "./dist/storage/index.js",
72
+ "node": "./dist/node/storage/index.js",
73
+ "default": "./dist/storage/index.js"
74
+ }
75
+ },
76
+ "files": [
77
+ "dist",
78
+ "README.md"
79
+ ],
80
+ "publishConfig": {
81
+ "access": "public",
82
+ "exports": {
83
+ ".": {
84
+ "types": "./dist/index.d.ts",
85
+ "bun": "./dist/index.js",
86
+ "node": "./dist/node/index.js",
87
+ "default": "./dist/index.js"
88
+ },
89
+ "./entities": {
90
+ "types": "./dist/entities/index.d.ts",
91
+ "bun": "./dist/entities/index.js",
92
+ "node": "./dist/node/entities/index.js",
93
+ "default": "./dist/entities/index.js"
94
+ },
95
+ "./entities/index": {
96
+ "types": "./dist/entities/index.d.ts",
97
+ "bun": "./dist/entities/index.js",
98
+ "node": "./dist/node/entities/index.js",
99
+ "default": "./dist/entities/index.js"
100
+ },
101
+ "./pipeline/context-snapshot-pipeline": {
102
+ "types": "./dist/pipeline/context-snapshot-pipeline.d.ts",
103
+ "bun": "./dist/pipeline/context-snapshot-pipeline.js",
104
+ "node": "./dist/node/pipeline/context-snapshot-pipeline.js",
105
+ "default": "./dist/pipeline/context-snapshot-pipeline.js"
106
+ },
107
+ "./storage": {
108
+ "types": "./dist/storage/index.d.ts",
109
+ "bun": "./dist/storage/index.js",
110
+ "node": "./dist/node/storage/index.js",
111
+ "default": "./dist/storage/index.js"
112
+ },
113
+ "./storage/index": {
114
+ "types": "./dist/storage/index.d.ts",
115
+ "bun": "./dist/storage/index.js",
116
+ "node": "./dist/node/storage/index.js",
117
+ "default": "./dist/storage/index.js"
118
+ }
119
+ },
120
+ "registry": "https://registry.npmjs.org/"
121
+ },
122
+ "license": "MIT",
123
+ "repository": {
124
+ "type": "git",
125
+ "url": "https://github.com/lssm-tech/contractspec.git",
126
+ "directory": "packages/modules/context-storage"
127
+ },
128
+ "homepage": "https://contractspec.io"
129
+ }