-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "winston-prisma-transporter",
"version": "0.3.0",
"description": "Transport Winston logger with Prisma",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/walleXD/winston-prisma-transporter.git"
},
"homepage": "https://github.com/walleXD/winston-prisma-transporter",
"bugs": {
"url": "https://github.com/walleXD/winston-prisma-transporter/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "swc ./src/index.ts -d dist/cjs -C module.type=commonjs jsc.target=es2018",
"build:es": "swc ./src/index.ts --out-dir dist/es",
"build:types": "tsc -p tsconfig.build.json",
"build:pkg": "pnpm run typecheck && pnpm run build:types && pnpm run build:es && pnpm run build",
"typecheck": "tsc --noEmit",
"publish:pkg": "pnpm run build:pkg && pnpm publish"
},
"keywords": [
"winston",
"prisma",
"transport",
"mysql",
"mongo",
"postgres"
],
"author": "walleXD <6826840+walleXD@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"winston-transport": "^4"
},
"peerDependencies": {
"@prisma/client": "^3 || ^4.0.0",
"winston": "^3"
},
"devDependencies": {
"@prisma/client": "4.4.0",
"@swc/cli": "0.1.57",
"@swc/core": "1.3.10",
"@swc/jest": "0.2.20",
"@types/node": "16.11.62",
"deepmerge": "4.2.2",
"jest": "29.2.0",
"tslib": "2.4.0",
"typescript": "4.8.4",
"winston": "3.8.2"
}
}