-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.48 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "logixlysia",
"version": "4.0.0",
"description": "🦊 Logixlysia is a logger for Elysia",
"type": "module",
"module": "src/index.ts",
"main": "src/index.ts",
"author": "PunGrumpy",
"publisher": "PunGrumpy",
"maintainers": [
"PunGrumpy"
],
"contributors": [
{
"name": "n0ky4",
"url": "https://github.com/n0ky4"
}
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "bun test --timeout 5000 --coverage",
"test:ci": "bun test --timeout 5000 --coverage --coverage-reporter=lcov",
"publish": "npm publish",
"dev": "bun run --watch example/basic.ts",
"prepare": "husky",
"lint:staged": "lint-staged",
"format": "prettier --write --config .trunk/configs/.prettierrc.yaml .",
"trunk:check": "trunk check",
"trunk:fmt": "trunk fmt"
},
"os": [
"darwin",
"linux",
"win32"
],
"badges": [
{
"name": "npm",
"url": "https://img.shields.io/npm/v/logixlysia.svg",
"description": "npm version",
"href": "https://www.npmjs.com/package/logixlysia"
},
{
"name": "npm",
"url": "https://img.shields.io/npm/dt/logixlysia.svg",
"description": "npm downloads",
"href": "https://www.npmjs.com/package/logixlysia"
},
{
"name": "GitHub issues",
"url": "https://img.shields.io/github/issues/PunGrumpy/logixlysia.svg",
"description": "GitHub issues",
"href": "https://github.com/PunGrumpy/logixlysia/issues"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/PunGrumpy/logixlysia.git"
},
"bugs": {
"url": "https://github.com/PunGrumpy/logixlysia/issues"
},
"homepage": "https://github.com/PunGrumpy/logixlysia#readme",
"keywords": [
"web",
"logging",
"logger",
"elysia",
"elysiajs",
"logixlysia",
"middleware"
],
"dependencies": {
"chalk": "^5.3.0",
"elysia": "^1.1.23"
},
"devDependencies": {
"@elysiajs/eden": "^1.1.3",
"@eslint/js": "^9.13.0",
"@trunkio/launcher": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"bun-types": "^1.1.33",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript-eslint": "^8.11.0"
},
"peerDependencies": {
"typescript": "^5.2.2"
}
}