-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "prisma-models-generator",
"version": "0.1.1",
"description": "Create models for each entity from prisma.schema",
"main": "dist/generator.js",
"bin": {
"prisma-models-generator": "dist/bin.js"
},
"files": [
"dist",
"README.md"
],
"homepage": "https://github.com/Luiyit/prisma-models-generator",
"repository": {
"type": "git",
"url": "git://github.com/Luiyit/prisma-models-generator.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"removeDist": "rimraf dist",
"teaser": "node teaser.js",
"build": "yarn removeDist && tsc",
"publish": "npm publish",
"buildPublish": "yarn build && yarn publish",
"buildPublishTeaser": "yarn build && yarn publish && yarn teaser",
"cleanCache": "yarn cache clean && npm cache clean --force"
},
"keywords": [
"node",
"typescript",
"prisma",
"sentry",
"models"
],
"author": {
"name": "Luiyit Hernandez",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@prisma/client": "6.0.1",
"@swc/core": "^1.10.0",
"@types/node": "^22.10.2",
"change-object-case": "^0.2.1",
"rimraf": "^6.0.1",
"terser": "^5.37.0",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"@prisma/generator-helper": "6.0.1",
"@prisma/internals": "^6.0.1"
}
}