-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.87 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@jvddavid/logger",
"license": "MIT",
"version": "1.0.15",
"description": "A simple logger for Node.js",
"keywords": [
"logger",
"node",
"nodejs",
"typescript"
],
"author": {
"name": "João Victor Davi de Oliveira",
"email": "j.victordavid2@gmail.com",
"url": "https://github.com/jvddavid/logger"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jvddavid/logger.git"
},
"bugs": {
"url": "https://github.com/jvddavid/logger/issues"
},
"homepage": "https://github.com/jvddavid/logger",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist",
"README.md",
"package.json",
"tsconfig.json"
],
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@stylistic/eslint-plugin": "^2.7.2",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"pkgroll": "^2.4.2",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vitest": "^2.0.5"
},
"scripts": {
"prepublishOnly": "npm run type:check && npm run lint && npm run build && npm run test",
"start": "node dist/index.mjs",
"type:check": "tsc --noEmit",
"build": "pkgroll --clean-dist --minify --target=es2023 --target=node20",
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"dev": "tsx --watch src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@jvddavid/pino-rotating-file": "^1.0.6",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2"
}
}