-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "guvercin",
"description": "Guvercin (Turkish word for 'dove', pronounced `/ɡyverˈdʒin/`) is a very simple logger library for Node.js.",
"version": "2.0.0-alpha.2",
"author": {
"name": "Onur Ravli",
"email": "onur@onurravli.com",
"url": "https://onurravli.com"
},
"maintainers": [
{
"name": "Onur Ravli",
"email": "onur@onurravli.com",
"url": "https://onurravli.com"
}
],
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "eslint \"**/*.ts\" --fix"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"dependencies": {
"chalk": "4.1.2"
}
}