-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "logbotjs",
"version": "2.1.1",
"description": "LogBot is a simple console/file logger for NodeJS/bun written in TypeScript.",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "tsx ./test/log.ts",
"build": "npx tsc && tsc-alias",
"prepare": "npm run build"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AxelRothe/logbot.git"
},
"author": "Axel Rothe",
"license": "MIT",
"bugs": {
"url": "https://github.com/AxelRothe/logbot/issues"
},
"homepage": "https://github.com/AxelRothe/logbot#readme",
"dependencies": {
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"prettyjson": "^1.2.5",
"spinnies": "^0.5.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.12.0",
"@types/prettyjson": "^0.0.33",
"@types/spinnies": "^0.5.3",
"prettier": "^3.4.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"prettier": {
"semi": false
}
}