-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.01 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.01 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
{
"name": "leprechaun",
"version": "1.0.0",
"description": "A simple, lightweight, and colorful logging utility",
"type": "module",
"homepage": "https://github.com/websperts/leprechaun",
"author": "websperts <hello@websperts.com>",
"repository": {
"type": "git",
"url": "git@github.com:websperts/leprechaun.git"
},
"keywords": [
"leprechaun",
"log"
],
"bugs": {
"url": "https://github.com/websperts/leprechaun/issues"
},
"main": "dist/leprechaun.js",
"types": "dist/leprechaun.d.ts",
"exports": {
".": {
"import": "./dist/leprechaun.js",
"types": "./dist/leprechaun.d.ts"
}
},
"files": [
"dist"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"log-symbols": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.17.6",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"typescript": "^5.7.2"
}
}