-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "@countbot/loggage",
"version": "1.8.0",
"description": "Simple logging library for Node.js",
"type": "module",
"author": "Rick-vm",
"license": "MIT",
"bugs": {
"url": "https://github.com/Count-Bot/loggage/issues",
"email": "realcountbot@gmail.com"
},
"homepage": "https://github.com/Count-Bot/loggage#readme",
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/node": "^22.9.3",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"prettier": "^3.3.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
},
"files": [
"src",
"build"
],
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js",
"types": "./build/index.d.ts"
}
},
"scripts": {
"build:node": "tsc",
"build:ci": "tsc --noEmit",
"format": "prettier --write . && eslint --fix --format=pretty src",
"lint": "prettier --check . && eslint --format=pretty src",
"prepare": "npm run build:node"
},
"dependencies": {
"dayjs": "^1.11.13"
}
}