-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.55 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "logger-multi-db",
"version": "1.0.14",
"description": "Universal logging library for Node.js - Works with MongoDB, PostgreSQL, MySQL, Firebase, and more",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./adapters/mongodb": {
"import": "./dist/adapters/mongodb/index.js",
"types": "./dist/adapters/mongodb/index.d.ts"
},
"./adapters/postgresql": {
"import": "./dist/adapters/postgresql/index.js",
"types": "./dist/adapters/postgresql/index.d.ts"
},
"./adapters/mysql": {
"import": "./dist/adapters/mysql/index.js",
"types": "./dist/adapters/mysql/index.d.ts"
},
"./adapters/firebase": {
"import": "./dist/adapters/firebase/index.js",
"types": "./dist/adapters/firebase/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --test",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags",
"publish:dry": "npm publish --dry-run",
"publish:check": "npm pack --dry-run",
"clean": "rm -rf dist node_modules",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm run build && npm run test"
},
"keywords": [
"logger",
"logging",
"mongodb",
"postgresql",
"mysql",
"firebase",
"firestore",
"universal",
"typescript",
"javascript",
"esm",
"modules",
"nodejs",
"nextjs",
"next.js",
"database",
"sql",
"nosql",
"error-tracking",
"monitoring"
],
"author": "Jordan (Tech converter)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jordane9999/logger-multi-db.git"
},
"bugs": {
"url": "https://github.com/Jordane9999/logger-multi-db/issues"
},
"homepage": "https://github.com/Jordane9999/logger-multi-db#readme",
"peerDependencies": {},
"peerDependenciesMeta": {
"mongodb": {
"optional": true
},
"pg": {
"optional": true
},
"mysql2": {
"optional": true
},
"firebase-admin": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}