-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.37 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.37 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
{
"name": "@jvddavid/logger",
"license": "MIT",
"version": "1.1.4",
"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.39.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"pkgroll": "^2.21.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vitest": "^4.0.16"
},
"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=node24",
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"dev": "tsx --watch src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"release:patch": "npm run version:patch && git push --follow-tags",
"release:minor": "npm run version:minor && git push --follow-tags",
"release:major": "npm run version:major && git push --follow-tags",
"publish:github": "pnpm publish --registry https://npm.pkg.github.com",
"login:github": "npm login --registry=https://npm.pkg.github.com"
},
"dependencies": {
"@jvddavid/pino-rotating-file": "^1.1.2",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3"
},
"packageManager": "pnpm@10.22.0"
}