-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 KB
/
package.json
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
{
"name": "@electric-sql/pglite-sync",
"version": "0.2.20",
"description": "ElectricSQL Sync for PGlite",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"postgres",
"sql",
"database",
"wasm",
"client",
"pglite",
"sync",
"partial-replication"
],
"author": "Electric DB Limited",
"homepage": "https://pglite.dev",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/electric-sql/pglite.git",
"directory": "packages/pglite-sync"
},
"scripts": {
"build": "tsup",
"test": "vitest",
"test:e2e:up": "docker compose -f test-e2e/docker_compose.yaml up -d",
"test:e2e:down": "docker compose -f test-e2e/docker_compose.yaml down --volumes",
"test:e2e:reset": "pnpm test:e2e:down && pnpm test:e2e:up",
"test:e2e:run": "pnpm vitest --config vitest-e2e.config.ts",
"test:e2e": "pnpm test:e2e:reset && pnpm test:e2e:run && pnpm test:e2e:down",
"lint": "eslint ./src ./test --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write ./src ./test",
"typecheck": "tsc",
"stylecheck": "pnpm lint && prettier --check ./src ./test"
},
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"dependencies": {
"@electric-sql/client": "1.0.0-beta.5",
"@electric-sql/experimental": "0.1.2-beta.4"
},
"devDependencies": {
"@electric-sql/pglite": "workspace:*",
"@eslint-react/eslint-plugin": "^1.14.3",
"@types/node": "^20.16.11",
"@vitejs/plugin-react": "^4.3.2",
"globals": "^15.11.0",
"pg": "^8.14.0",
"vitest": "^2.1.2"
},
"peerDependencies": {
"@electric-sql/pglite": "workspace:^"
}
}