-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@otta-sh/store-emdash",
"version": "0.0.1",
"description": "Commerce store adapters for Otta over the EmDash plugin-storage primitives — bound to a structural StorageAccess port, never to the host at runtime. REQUIRES the conditional-write primitives (updateIf/getVersioned/compareAndSet/compareAndDelete), which no published emdash release carries yet: the `emdash` specifier here is the plain registry version, and the workspace override that redirects it to the vendored build is load-bearing until a release ships them.",
"homepage": "https://github.com/UrumiAI/otta.sh#readme",
"bugs": {
"url": "https://github.com/UrumiAI/otta.sh/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/UrumiAI/otta.sh.git",
"directory": "packages/store-emdash"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./src/index.ts"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"build": "tsdown"
},
"dependencies": {
"@otta-sh/domain": "workspace:*"
},
"devDependencies": {
"@types/better-sqlite3": "catalog:",
"@types/pg": "catalog:",
"better-sqlite3": "catalog:",
"emdash": "0.37.0",
"kysely": "catalog:",
"pg": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"emdash": "0.37.0"
}
}