-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
72
73
74
75
76
77
78
{
"name": "prisma-multischema",
"version": "1.1.4",
"description": "Prisma Multiple Schema Support with Structure & Add imports to your Prisma schemas",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*",
"/bin"
],
"bin": {
"prisma-multischema": "./bin/run"
},
"scripts": {
"custom007x": "npx ts-node \"./src/generate.js\" ",
"clean": "npm run clean:win || npm run clean:lin",
"clean:win": "node -e \"if (process.platform === 'win32') process.exit(1)\" || if exist lib rmdir /s /q \"lib\" ",
"clean:lin": "node -e \"if (process.platform !== 'win32') process.exit(1)\" || rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && npm run mv:win && npm run mv:lin ",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"mv:win": "node -e \"if (process.platform === 'win32') process.exit(1)\" || move \"lib\\esm\\index.js\" \"lib\\esm\\index.mjs\" ",
"mv:lin": "node -e \"if (process.platform !== 'win32') process.exit(1)\" || mv lib/esm/index.js lib/esm/index.mjs",
"test": "mocha",
"prepack": "npm run build"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/joydip007x/Prisma-MultiSchema.git"
},
"keywords": [
"Prisma Schema Multiple",
"Prisma Schema Aggregator",
"Multi-schema support",
"prisma",
"prisma-import",
"prisma-multischema",
"prisma Multischema",
"prisma-subschema",
"prisma",
"Prisma Multiple Schema"
],
"author": "Joydip007x",
"license": "MIT",
"bugs": {
"url": "https://github.com/joydip007x/Prisma-MultiSchema.git/issues"
},
"homepage": "https://github.com/joydip007x/Prisma-MultiSchema.git#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^9.1.1",
"@types/node": "^20.8.4",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}