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
72 lines (72 loc) · 3.07 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 3.07 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
{
"name": "@livestore/monorepo",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@effect/language-service": "^0.16.5",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitest/ui": "^3.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"madge": "^6.1.0",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.10",
"syncpack": "^13.0.2",
"typescript": "^5.8.3",
"vite": "^6.3.4",
"vitest": "^3.1.2"
},
"packageManager": "pnpm@10.2.1",
"pnpm": {
"patchedDependencies": {
"graphology@0.26.0-alpha1": "patches/graphology-npm-0.26.0-alpha1-264be2a8c9.patch"
}
},
"resolutions": {
"@livestore/adapter-expo": "workspace:*",
"@livestore/adapter-node": "workspace:*",
"@livestore/adapter-web": "workspace:*",
"@livestore/common": "workspace:*",
"@livestore/devtools-expo": "workspace:*",
"@livestore/devtools-vite": "^0.3.0",
"@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/webmesh": "workspace:*",
"esbuild": "0.25.4",
"react-native": "^0.79.2"
},
"resolutions#": {
"esbuild": "Needed for CF Wrangler / vinxi build",
"@livestore/*": "Needed to force PNPM to install local packages"
},
"scripts": {
"build": "pnpm run build:ts",
"build:clean": "bash -c \"find {examples,packages} -path '*node_modules*' -prune -o \\( -name 'dist' -type d -o -name '*.tsbuildinfo' \\) -exec rm -rf {} +\"",
"build:examples:src": "pnpm --filter 'livestore-example-src-*' run build",
"build:examples:standalone": "pnpm --filter 'livestore-example-standalone-*' run build",
"build:ts": "tsc --build tsconfig.dev.json && tsc --build tsconfig.all.json",
"dev:ts": "tsc --build tsconfig.dev.json --watch",
"pack:tmp": "pnpm --filter '@livestore/*' exec -- pnpm pack --out tmp/pack.tgz",
"release:dev": "pnpm run build && pnpm --filter '@livestore/*' exec -- npm version prerelease --preid=dev --no-workspaces-update && pnpm --filter '@livestore/*' exec -- pnpm publish --tag dev --no-git-checks",
"release:patch": "pnpm run build && pnpm --filter '@livestore/*' exec -- npm version patch --no-workspaces-update && pnpm --filter '@livestore/*' exec -- pnpm publish --no-git-checks",
"test": "CI=1 pnpm --parallel run test",
"test:perf": "pnpm --filter '@local/tests-perf' test",
"update-lockfile": "CI=1 pnpm install --lockfile-only"
}
}