-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 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
49
{
"name": "logmoji",
"version": "1.3.0",
"description": "🪵 Very small logging package with emojis for node.js",
"main": "src/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"require": "./src/index.js",
"import": "./src/index.mjs",
"types": "./types/index.d.ts"
}
},
"scripts": {
"types": "tsc",
"test": "jest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"bugs": {
"url": "https://github.com/halitsever/logmoji/issues"
},
"keywords": [
"log",
"logger",
"logging",
"emoji",
"emoji logger",
"cli",
"terminal",
"term",
"console",
"shell",
"update",
"refresh",
"overwrite",
"output",
"stdout"
],
"author": "Halit Sever <halitsever@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.22",
"jest": "^29.7.0",
"typescript": "^5.9.3",
"vitepress": "^1.0.0-rc.44"
}
}