-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ts-sql-codegen",
"version": "3.21.0",
"description": "Generates ts-sql-query table mappings from tbls schema output",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "pnpm run build:ts && pnpm run copy:templates && pnpm run build:docs",
"build:ts": "tsc",
"build:docs": "typedoc --plugin typedoc-plugin-markdown --readme none src/index.ts",
"copy:templates": "recursive-copy -w src dist -f \"*.hbs\"",
"clean": "rimraf dist test/generated",
"test": "mocha -r ts-node/register -r mocha-snap --extensions ts,js \"./test/**/*.ts\""
},
"files": [
"dist/**/*"
],
"keywords": [
"sql",
"code-generator",
"ts-sql-query",
"query-builder",
"typescript"
],
"author": {
"name": "Lorefnon",
"email": "[email protected]",
"url": "https://lorefnon.me"
},
"repository": "github:lorefnon/ts-sql-codegen",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.19",
"@types/pg": "^8.11.0",
"@types/prompts": "^2.4.9",
"@types/rimraf": "^3.0.2",
"better-sqlite3": "^9.4.1",
"mocha": "^10.3.0",
"mocha-snap": "^5.0.0",
"pg": "^8.11.3",
"recursive-copy-cli": "^1.0.20",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"ts-sql-query": "^1.59.0",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"ts-sql-query": "^1.29.0"
},
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"handlebars": "^4.7.8",
"hbs-dedent-helper": "^0.3.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"prompts": "^2.4.2",
"ts-pattern": "^5.0.8",
"zod": "^3.22.4"
}
}