-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.92 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.92 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
{
"name": "replicache",
"version": "15.2.1",
"description": "Realtime sync for any backend stack",
"homepage": "https://replicache.dev/",
"bugs": {
"url": "https://bugs.rocicorp.dev"
},
"license": "Apache-2.0",
"author": "Rocicorp, Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/rocicorp/mono.git",
"directory": "packages/replicache"
},
"bin": {
"replicache": "./out/cli.cjs"
},
"files": [
"out",
"!*.tsbuildinfo"
],
"type": "module",
"main": "out/replicache.js",
"module": "out/replicache.js",
"types": "out/replicache/src/mod.d.ts",
"exports": {
".": {
"types": "./out/replicache/src/mod.d.ts",
"default": "./out/replicache.js"
},
"./impl": {
"types": "./out/replicache/src/impl.d.ts",
"default": "./out/impl.js"
},
"./expo-sqlite": {
"types": "./out/replicache/src/expo-sqlite.d.ts",
"default": "./out/expo-sqlite.js"
},
"./op-sqlite": {
"types": "./out/replicache/src/op-sqlite.d.ts",
"default": "./out/op-sqlite.js"
},
"./sqlite": {
"types": "./out/replicache/src/sqlite.d.ts",
"default": "./out/sqlite.js"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:chromium": "VITEST_BROWSER=chromium vitest run --config vitest.config.web.ts",
"test:chromium:watch": "VITEST_BROWSER=chromium vitest --config vitest.config.web.ts",
"test:firefox": "VITEST_BROWSER=firefox vitest run --config vitest.config.web.ts",
"test:firefox:watch": "VITEST_BROWSER=firefox vitest --config vitest.config.web.ts",
"test:webkit": "VITEST_BROWSER=webkit vitest run --config vitest.config.web.ts",
"test:webkit:watch": "VITEST_BROWSER=webkit vitest --config vitest.config.web.ts",
"bench": "vitest run --config vitest.config.bench.ts",
"bench:bmf": "BENCH_OUTPUT_FORMAT=json pnpm run bench 2>&1 | node ../shared/src/tool/mitata-json-to-bmf.ts",
"bench:bmf:silent": "pnpm run bench:bmf --silent",
"format": "oxfmt .",
"check-format": "oxfmt --check .",
"check-types": "tsc -p tsconfig.json && tsc -p tsconfig.build.json && tsc -p tool/tsconfig.json",
"check-types:watch": "tsc -p tsconfig.json --watch",
"check-types:build:watch": "tsc -p tsconfig.build.json --watch",
"check-types:tool:watch": "tsc -p tool/tsconfig.json --watch",
"lint": "oxlint --quiet --config ../../oxlint.config.ts src/",
"build": "rm -rf out && tsc -p tsconfig.build.json && node tool/build.ts",
"build-bundle-sizes": "rm -rf out && node tool/build.ts --bundle-sizes",
"prepack": "pnpm run lint && pnpm run test && pnpm run build && mv README.md README-org.md && mv README-external.md README.md",
"postpack": "mv README.md README-external.md && mv README-org.md README.md",
"fmt": "oxfmt .",
"check-fmt": "oxfmt --check ."
},
"dependencies": {
"@badrap/valita": "0.3.11",
"@rocicorp/lock": "^1.0.4",
"@rocicorp/logger": "^6.1.0",
"@rocicorp/resolver": "^1.0.2"
},
"devDependencies": {
"@op-engineering/op-sqlite": ">=15",
"@rocicorp/zero-sqlite3": "^1.1.4",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@vitest/runner": "^4.1.6",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"compare-utf8": "^0.2.1",
"esbuild": "0.27.7",
"expo-sqlite": ">=15",
"hash-wasm": "^4.9.0",
"idb": "^7.0.1",
"oxfmt": "^0.65.0",
"playwright": "^1.60.0",
"shared": "workspace:*",
"typescript": "~7.0.2",
"vitest": "^4.1.6",
"xbytes": "^1.7.0"
},
"peerDependencies": {
"@op-engineering/op-sqlite": ">=15",
"@rocicorp/zero-sqlite3": "^1.1.4",
"expo-sqlite": ">=15"
},
"peerDependenciesMeta": {
"expo-sqlite": {
"optional": true
},
"@op-engineering/op-sqlite": {
"optional": true
},
"@rocicorp/zero-sqlite3": {
"optional": true
}
},
"packageManager": "pnpm@11.11.0"
}