-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.63 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.63 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
{
"name": "rove",
"version": "1.0.0",
"description": "PostgreSQL migrations tool built with Bun and TypeScript",
"module": "src/main.ts",
"type": "module",
"bin": {
"rove": "./src/main.ts"
},
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"compile:linux-x64": "bun build --compile --target=bun-linux-x64 --outfile=build/linux-x64/rove src/main.ts",
"compile:darwin-x64": "bun build --compile --target=bun-darwin-x64 --outfile=build/darwin-x64/rove src/main.ts",
"compile:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 --outfile=build/darwin-arm64/rove src/main.ts",
"compile:windows-x64": "bun build --compile --target=bun-windows-x64 --outfile=build/windows-x64/rove.exe src/main.ts",
"compile": "bun run compile:linux-x64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64 && bun run compile:windows-x64",
"dev": "bun dev src/main.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:commands": "bun test tests/commands/",
"test:integration": "bun test tests/integration.test.ts",
"test:summary": "bun run scripts/test-summary.ts",
"release": "bun run compile && bun publish --access public",
"lint": "biome lint --fix src/**/*.ts",
"format": "biome format --fix src/**/*.ts"
},
"devDependencies": {
"@biomejs/biome": "2.0.5",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"@types/pg": "^8.15.4",
"commander": "^13.1.0",
"pg": "^8.16.2"
}
}