-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "solid-objects",
"version": "0.13.1",
"description": "Race-free realtime state per application identity, backed by your SQL database",
"type": "module",
"license": "MIT",
"author": "Lucas Carlson",
"keywords": [
"concurrency",
"durable-state",
"mysql",
"nodejs",
"postgresql",
"realtime",
"sqlite",
"state-management",
"typescript",
"actors",
"durable-objects"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cardmagic/solid-objects-js.git"
},
"engines": {
"node": ">=24.15.0"
},
"packageManager": "pnpm@11.11.0",
"bin": {
"solid-objects": "dist/executable.js"
},
"files": [
"dist",
"docs",
"examples",
"README.md",
"CHANGELOG.md",
"MIT-LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./database/sqlite": {
"types": "./dist/database/sqlite.d.ts",
"import": "./dist/database/sqlite.js"
},
"./database/postgresql": {
"types": "./dist/database/postgresql.d.ts",
"import": "./dist/database/postgresql.js"
},
"./database/mysql": {
"types": "./dist/database/mysql.d.ts",
"import": "./dist/database/mysql.js"
},
"./wake-up/redis": {
"types": "./dist/wake-up/redis.d.ts",
"import": "./dist/wake-up/redis.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.js"
},
"./web": {
"types": "./dist/web/index.d.ts",
"import": "./dist/web/index.js"
}
},
"scripts": {
"build": "pnpm run clean && tsc -p tsconfig.build.json && tsc -p tsconfig.quickstart-build.json && node scripts/prepare-executable.mjs",
"check": "pnpm run check:parameters && pnpm run check:documentation && tsc -p tsconfig.json --noEmit && tsc -p tsconfig.examples.json --noEmit",
"check:documentation": "node scripts/check-documentation.mjs",
"check:parameters": "node scripts/check-parameter-style.mjs",
"clean": "node scripts/clean.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:browser": "pnpm run build && playwright test",
"test:coverage": "vitest run --coverage",
"test:postgresql": "vitest run test/postgresql.test.ts",
"test:mysql": "vitest run test/mysql.test.ts",
"test:package": "node scripts/release-artifact-smoke.mjs",
"test:recovery": "pnpm run build && node examples/failure-recovery/demo.ts",
"test:redis": "vitest run test/redis-wake-up.test.ts",
"test:watch": "vitest",
"benchmark": "pnpm run build && node benchmarks/run.ts",
"benchmark:idle": "pnpm run build && node benchmarks/idle.ts",
"pack:check": "pnpm pack --dry-run && node scripts/check-package.mjs",
"prepack": "pnpm run build"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/node": "^24.0.0",
"@types/pg": "^8.21.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.10",
"mysql2": "^3.23.3",
"pg": "^8.23.0",
"prettier": "^3.9.6",
"redis": "^6.2.1",
"typescript": "^5.9.0",
"vitest": "^4.1.10",
"ws": "^8.21.3"
},
"peerDependencies": {
"mysql2": "^3.23.3",
"pg": "^8.23.0",
"redis": "^6.2.1"
},
"peerDependenciesMeta": {
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"redis": {
"optional": true
}
}
}