-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 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
{
"name": "livesql",
"private": true,
"version": "0.0.0",
"description": "Open-source real-time SQL sync library",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,md,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,yaml}\"",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r clean",
"dev": "pnpm --filter demo dev",
"prepare": "husky"
},
"keywords": [
"realtime",
"sql",
"sync",
"websocket",
"postgresql",
"cdc",
"change-data-capture"
],
"author": "",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.4",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml}": [
"prettier --write"
]
}
}