-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 938 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 938 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
37
38
39
40
41
{
"name": "sqlc-typescript",
"description": "A super lightweight TypeScript types generator that respects your laziness and love for raw SQL",
"version": "0.0.24",
"type": "module",
"main": "dist/cli.js",
"bin": "bin/cli",
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsc",
"start": "node --no-warnings src/cli.ts",
"test": "node --no-warnings src/cli.ts generate -c tests/sqlc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seralexeev/sqlc-typescript"
},
"bugs": {
"url": "https://github.com/seralexeev/sqlc-typescript/issues"
},
"license": "MIT",
"keywords": [
"postgres",
"typescript",
"sql",
"sqlc"
],
"packageManager": "yarn@4.6.0",
"dependencies": {
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"ora": "^8.2.0",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/node": "^22.13.2"
}
}