-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 946 Bytes
/
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
{
"name": "@danielfgray/pg-sourcerer",
"version": "0.1.0",
"description": "",
"main": "index.js",
"bin": {
"pgs": "./index.mjs"
},
"scripts": {
"dev": "DEBUG=pg-sourcerer nodemon -w index.mjs -w pgsourcerer.config.mjs -x 'rm -fr generated; bun ./index.mjs'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "DanielFGray <[email protected]>",
"license": "Unlicense",
"dependencies": {
"cosmiconfig": "^9.0.0",
"debug": "^4.3.4",
"inflection": "^3.0.0",
"pg-introspection": "beta",
"recast": "^0.23.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/debug": "^4.1.12",
"@types/node": "^20.10.4",
"@types/nodemon": "^1.19.6",
"@types/pg": "^8.10.9",
"dotenv": "^16.3.1",
"nodemon": "^3.0.2"
},
"optionalDependencies": {
"pg": "^8.11.3",
"postgres": "^3.4.3"
}
}