-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 797 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 797 Bytes
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@sjawhar/opencode-postgres-sync",
"version": "0.1.8",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"format": "bunx prettier --check .",
"typecheck": "tsc --noEmit",
"build": "tsc",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"dependencies": {
"postgres": "^3.4.5"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.3.13"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.3.13",
"@tsconfig/node22": "22.0.2",
"@types/bun": "1.3.11",
"@types/node": "22.13.9",
"prettier": "3.6.2",
"typescript": "5.8.2"
},
"prettier": {
"semi": false,
"printWidth": 120
}
}