-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.72 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@twoabove/cue",
"private": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"version": "0.5.4",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./errors": {
"types": "./dist/errors/index.d.ts",
"import": "./dist/errors/index.js"
},
"./persistence/adapters/inMemory": {
"types": "./dist/persistence/adapters/inMemory.d.ts",
"import": "./dist/persistence/adapters/inMemory.js"
},
"./types": {
"types": "./dist/types/public.d.ts",
"import": "./dist/types/public.js"
}
},
"description": "Durable stateful entities for TypeScript",
"keywords": [
"entity",
"stateful",
"durable",
"event-sourcing",
"typescript",
"persistence"
],
"bugs": {
"url": "https://github.com/twoabove/cue/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twoabove/cue.git"
},
"author": "Seva Maltsev <me@seva.dev> (https://seva.dev)",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"superjson": "^2.2.3"
},
"peerDependencies": {
"immer": ">=10.0.0"
},
"scripts": {
"prepare": "bun run build",
"test:e2e": "sh ./scripts/e2e-test.sh",
"test": "vitest run --coverage",
"lint": "biome check",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "2.3.1",
"@types/node": "^24.9.1",
"immer": "^10.2.0",
"@types/pg": "^8.15.5",
"@vitest/coverage-v8": "^4.0.4",
"expect-type": "^1.2.2",
"pg": "^8.16.3",
"pg-mem": "^3.0.5",
"typescript": "^5.9.3",
"vitest": "^4.0.4"
}
}