forked from livestorejs/livestore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.32 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
{
"name": "@livestore/monorepo",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@effect/language-service": "^0.36.0",
"@types/node": "catalog:",
"@vitest/ui": "catalog:",
"husky": "^9.1.7",
"madge": "^8.0.0",
"syncpack": "^13.0.4",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"yaml": "^2.8.1"
},
"packageManager": "pnpm@10.13.1",
"pnpm": {
"patchedDependencies": {
"graphology@0.26.0-alpha1": "patches/graphology-npm-0.26.0-alpha1-264be2a8c9.patch"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide",
"dtrace-provider",
"esbuild",
"msgpackr-extract",
"protobufjs",
"sharp",
"workerd"
]
},
"resolutions": {
"@livestore/adapter-cloudflare": "workspace:*",
"@livestore/adapter-expo": "workspace:*",
"@livestore/adapter-node": "workspace:*",
"@livestore/adapter-web": "workspace:*",
"@livestore/cli": "workspace:*",
"@livestore/common": "workspace:*",
"@livestore/devtools-expo": "workspace:*",
"@livestore/devtools-vite": "0.4.0-dev.7",
"@livestore/devtools-web-common": "workspace:*",
"@livestore/livestore": "workspace:*",
"@livestore/peer-deps": "workspace:*",
"@livestore/react": "workspace:*",
"@livestore/solid": "workspace:*",
"@livestore/sqlite-wasm": "workspace:*",
"@livestore/sync-cf": "workspace:*",
"@livestore/sync-electric": "workspace:*",
"@livestore/utils": "workspace:*",
"@livestore/utils-dev": "workspace:*",
"@livestore/wa-sqlite": "workspace:*",
"@livestore/webmesh": "workspace:*"
},
"resolutions#": {
"@livestore/*": "Needed to force PNPM to install local packages"
},
"scripts": {
"_build:ts": "tsc --build tsconfig.dev.json && tsc --build tsconfig.examples.json",
"build": "pnpm run build:ts",
"build:clean": "bash -c \"find {examples,packages,tests,docs} -path '*node_modules*' -prune -o \\( -name 'dist' -type d -o -name '*.tsbuildinfo' \\) -exec rm -rf {} +\"",
"build:ts": "tsc --build tsconfig.dev.json",
"pack:tmp": "pnpm --filter '@livestore/*' exec -- pnpm pack --out tmp/pack.tgz",
"prepare": "husky",
"test": "CI=1 pnpm --parallel run test",
"update-lockfile": "CI=1 pnpm install --lockfile-only"
}
}