-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
88 lines (88 loc) · 1.97 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@rmp135/sql-ts",
"version": "2.1.0",
"main": "./dist/index.js",
"license": "MIT",
"description": "Generate TypeScript definitions from database schemas.",
"bin": {
"sql-ts": "bin/sql-ts"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rmp135/sql-ts.git"
},
"author": {
"name": "Ryan Poole"
},
"files": [
"/dist"
],
"type": "module",
"scripts": {
"prepack": "npm run build",
"build": "tsc",
"dev": "tsc -w",
"prebuild": "copyfiles -f ./src/template.handlebars ./dist/",
"test": "vitest",
"test:cover": "vitest --run --coverage",
"docs:serve": "docsify serve docs"
},
"peerDependencies": {
"better-sqlite3": "^11.2.1",
"mssql": "^10.0.2",
"mysql2": "^3.9.2",
"pg": "^8.11.3",
"sqlite3": "^5.1.7"
},
"peerDependenciesMeta": {
"mssql": {
"optional": true
},
"mysql": {
"optional": true
},
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"sqlite3": {
"optional": true
},
"better-sqlite3": {
"optional": true
}
},
"dependencies": {
"@types/pluralize": "^0.0.33",
"change-case": "^5.4.3",
"handlebars": "^4.7.8",
"knex": "^3.1.0",
"lodash-es": "^4.17.21",
"pluralize": "^8.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@testcontainers/mssqlserver": "^10.7.2",
"@testcontainers/mysql": "^10.7.2",
"@testcontainers/postgresql": "^10.7.2",
"@types/better-sqlite3": "^7.6.9",
"@types/lodash-es": "^4.17.12",
"@types/mssql": "^9.1.5",
"@types/mysql": "^2.15.25",
"@types/node": "^20.11.22",
"@types/pg": "^8.11.2",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^1.3.1",
"better-sqlite3": "^9.4.3",
"copyfiles": "^2.4.1",
"docsify-cli": "^4.4.4",
"mssql": "^10.0.2",
"mysql2": "^3.9.2",
"pg": "^8.11.3",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}