-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.58 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.58 KB
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": "prisma-class-validator-generator",
"version": "6.2.0",
"description": "Prisma 2+ generator to emit typescript models of your database with class validator",
"repository": "https://github.com/omar-dulaimi/prisma-class-validator-generator",
"bin": {
"prisma-class-validator-generator": "lib/generator.js"
},
"scripts": {
"build": "tsc",
"start": "npm run build && npx prisma generate",
"package:publish": "./package.sh && cd package && npm publish",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage",
"test:type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prerelease": "npm run build && npm run test:type-check && npm run format:check",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"release:predict": "git fetch --tags --quiet && semantic-release --dry-run --no-ci --plugins @semantic-release/commit-analyzer",
"release:predict:notes": "git fetch --tags --quiet && semantic-release --dry-run --no-ci --plugins @semantic-release/commit-analyzer,@semantic-release/release-notes-generator"
},
"author": {
"name": "Omar Dulaimi",
"url": "https://github.com/omar-dulaimi"
},
"keywords": [
"prisma",
"prisma-client",
"prisma-schema",
"class-validator",
"prisma-generator",
"prisma-class-validator-generator"
],
"license": "MIT",
"dependencies": {
"@prisma/client": "^6.19.0",
"@prisma/generator-helper": "^6.19.0",
"@prisma/internals": "^6.19.0",
"class-validator": "^0.14.2",
"pluralize": "^8.0.0",
"prettier": "^3.6.2",
"ts-morph": "^27.0.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^24.10.0",
"@types/pluralize": "0.0.33",
"@vitest/coverage-v8": "^4.0.8",
"conventional-changelog-conventionalcommits": "^9.1.0",
"prisma": "^6.19.0",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"bugs": {
"url": "https://github.com/omar-dulaimi/prisma-class-validator-generator/issues"
},
"homepage": "https://github.com/omar-dulaimi/prisma-class-validator-generator#readme",
"private": true
}