-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "node-error-logger",
"version": "0.9.0",
"description": "A simple library that logs NodeJS errors",
"main": "dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"start": "webpack --watch --mode development",
"build": "webpack --mode production",
"lint": "eslint & tsc --noEmit"
},
"keywords": [
"NodeJS",
"errors",
"logs"
],
"author": "Tim Moritz Kühle",
"license": "ISC",
"devDependencies": {
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/webpack-node-externals": "^3.0.4",
"bundle-declarations-webpack-plugin": "^5.1.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"nodemon-webpack-plugin": "^4.8.2",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.8.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"colors": "^1.4.0"
}
}