-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.41 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
{
"name": "@tqman/nice-logger",
"version": "1.1.1",
"description": "Logger for Elysia",
"author": {
"name": "tanishqmanuja",
"url": "https://github.com/tanishqmanuja",
"email": "tanishqmanuja@gmail.com"
},
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/tanishqmanuja/nice-logger",
"repository": {
"type": "git",
"url": "https://github.com/tanishqmanuja/nice-logger.git"
},
"bugs": "https://github.com/tanishqmanuja/nice-logger/issues",
"license": "MIT",
"keywords": [
"elysia",
"logger"
],
"scripts": {
"dev": "bun run --watch example/index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "bun run scripts/build.ts",
"bump": "bun run scripts/bump.ts",
"release": "bun run scripts/release.ts"
},
"peerDependencies": {
"elysia": ">=1.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/bun": "^1.1.14",
"elysia": "^1.2.9",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"picocolors": "^1.1.1"
}
}