-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "@casekit/typed-sql",
"version": "0.0.1",
"description": "Generate typed functions for your SQL files",
"main": "lib/index",
"types": "lib/index",
"scripts": {
"test": "vitest",
"build:example": "tsx src/index.ts test/examples"
},
"keywords": [],
"author": "Russell Dunphy (@rsslldnphy)",
"license": "ISC",
"dependencies": {
"fs": "0.0.1-security",
"glob": "^10.3.10",
"lodash": "^4.17.21",
"pg": "^8.11.3",
"pg-format": "^1.0.4",
"prettier": "^3.2.5"
},
"devDependencies": {
"@casekit/unindent": "^1.0.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.30",
"@types/pg": "^8.11.4",
"@types/pg-format": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"dotenv": "^16.4.5",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
}
}