prisma-generator-express 1.63.1 → 1.64.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bin.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prisma-generator-express",
3
3
  "description": "Prisma generator for Express, Fastify, and Hono CRUD APIs with OpenAPI documentation",
4
- "version": "1.63.1",
4
+ "version": "1.64.1",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "MIT",
@@ -10,12 +10,13 @@
10
10
  "node": ">=20.0"
11
11
  },
12
12
  "scripts": {
13
- "build": "rm -rf dist && npx tsc",
13
+ "build": "rm -rf dist && npx tsc && node -e \"require('node:fs').chmodSync('dist/bin.js', 0o755)\"",
14
14
  "dev": "npx tsc -w",
15
15
  "start": "node dist/bin.js",
16
16
  "test": "vitest",
17
17
  "coverage": "vitest --coverage",
18
- "prepack": "node copy.js && npm run build"
18
+ "prepack": "node copy.js && npm run build",
19
+ "test:typecheck": "tsc -p tsconfig.test.json"
19
20
  },
20
21
  "dependencies": {
21
22
  "@prisma/generator-helper": "7.5.0",
@@ -57,6 +58,7 @@
57
58
  "@types/better-sqlite3": "^7.6.13",
58
59
  "@types/node": "24.7.2",
59
60
  "@types/prettier": "3.0.0",
61
+ "@vitest/coverage-v8": "^4.1.0",
60
62
  "better-sqlite3": "^12.5.0",
61
63
  "express": "^5.2.1",
62
64
  "fast-xml-parser": "^5.3.3",
@@ -67,7 +69,8 @@
67
69
  "pino-pretty": "^13.0.0",
68
70
  "prisma": "7.5.0",
69
71
  "semantic-release": "^24.2.9",
70
- "typescript": "5.9.3"
72
+ "typescript": "5.9.3",
73
+ "vitest": "^4.1.0"
71
74
  },
72
75
  "homepage": "https://github.com/multipliedtwice/prisma-generator-express",
73
76
  "repository": {
package/src/bin.ts CHANGED
File without changes