-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "term-logger",
"version": "1.3.1",
"description": "A simple & fast logger for better console formatted output!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts ."
},
"keywords": [
"console",
"term-logger",
"discord logger",
"chalk",
"logger"
],
"author": "deemdev",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/devdeem/term-logger"
},
"bugs": {
"url": "https://github.com/devdeem/term-logger/issues"
},
"homepage": "https://discord.com/invite/UdKSrxBXyd",
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"npm-check-updates": "^16.14.12",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=10"
}
}