-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "kittylog",
"version": "1.0.6",
"description": "Pretty logs in JavaScript",
"author": "pietrodev07",
"repository": {},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"keywords": [
"log",
"pretty",
"format",
"output",
"style",
"logger",
"color",
"formatting",
"logging",
"console",
"beautiful",
"enhance",
"readable",
"messages"
],
"scripts": {
"build": "rollup -c",
"lint": "pnpm dlx @biomejs/biome lint .",
"format": "pnpm dlx @biomejs/biome format . --write",
"check": "pnpm dlx @biomejs/biome check --apply .",
"biome-ci": "pnpm dlx @biomejs/biome ci .",
"biome-all": "pnpm lint && pnpm format && pnpm check && pnpm biome-ci",
"test:node": "tsx src/test.ts"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.12.12",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.2",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
}
}