forked from jamiepine/prismix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.22 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
{
"name": "prismix",
"version": "1.0.19",
"description": "Create multiple Prisma schema files with shared model relations.",
"keywords": [
"prisma",
"schema",
"multiple files",
"split",
"prisma-merge"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jamie Pine",
"email": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/jamiepine/prismix#readme",
"repository": "https://github.com/jamiepine/prismix",
"private": false,
"scripts": {
"prepare": "tsc -b",
"dev": "tsc-watch",
"build": "tsc"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/dist"
],
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/jest": "^27.4.0",
"@types/jsonfile": "^6.0.1",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"@prisma/sdk": "^3.9.2",
"glob": "^7.1.7",
"jsonfile": "^6.1.0",
"tsc-watch": "^4.5.0"
},
"peerDependencies": {
"dotenv": "^10.0.0"
},
"bin": {
"prismix": "./bin/run"
},
"oclif": {
"bin": "prisma-merge"
}
}