-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
{
"name": "mysql-to-zod",
"version": "2.3.1",
"description": "Convert MySQL schemas into Zod schemas",
"source": "src/main.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"bin": {
"mysql-to-zod": "dist/main.js"
},
"scripts": {
"mysql-to-zod": "tsx ./src/main.ts",
"dev": "tsx ./src/main.ts",
"build": "zx ./build.mjs && zx ./addShebang.mjs",
"debugBuild": "esbuild ./src/main.ts --bundle --sourcemap --platform=node --outfile=./dist/main.js --external:prettier",
"test": "vitest",
"type": "tsc --noEmit",
"fmt": "pnpm biome format --write ./src",
"check": "pnpm biome check --write ./src",
"pub": "zx ./build.mjs && zx ./addShebang.mjs && npm publish",
"knip": "knip"
},
"keywords": [
"typescript",
"zod",
"mysql",
"schema",
"sql"
],
"author": "yuumillar",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@testcontainers/mysql": "^10.12.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.1",
"@vitest/ui": "^2.0.5",
"esbuild": "^0.23.1",
"knip": "^5.27.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"zod": "^3.22.4",
"zx": "^8.1.5"
},
"dependencies": {
"@mobily/ts-belt": "4.0.0-rc.5",
"camelcase": "^8.0.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"cosmiconfig-typescript-loader": "^5.0.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"immer": "^10.1.1",
"mysql2": "^3.11.0",
"node-sql-parser": "^5.3.1",
"peggy": "^4.0.3",
"prettier": "^3.3.3",
"prettier-plugin-sql": "^0.18.1",
"ts-case-convert": "^2.0.7",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2",
"ts-pattern": "^5.3.1",
"zod": "^3.23.8"
},
"volta": {
"node": "18.17.0",
"npm": "9.8.1"
}
}