-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.48 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
59
60
61
62
63
{
"name": "@brainergybyleo/byte-me",
"version": "1.1.7",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"bin": {
"byte-me": "./dist/bin/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"postinstall": "node dist/postinstall.js",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"cli",
"developer",
"fun",
"terminal",
"nodejs",
"jokes",
"motivation"
],
"author": "Leonard Oba <leonard6oba@gmail.com>",
"license": "MIT",
"description": "A fun CLI that surprises developers with random geeky messages, coding jokes, and motivational messages in the terminal!",
"repository": {
"type": "git",
"url": "git+https://github.com/LEO20Debugger/byte-me.git"
},
"homepage": "https://github.com/LEO20Debugger/byte-me#readme",
"bugs": {
"url": "https://github.com/LEO20Debugger/byte-me/issues"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.0",
"chalk-animation": "^2.0.3",
"commander": "^14.0.0",
"concurrently": "^8.2.0",
"figlet": "^1.8.2",
"gradient-string": "^3.0.0",
"node-cron": "^4.2.1",
"node-notifier": "^10.0.1",
"npmlog": "^7.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"rollup": "^4.48.0",
"rollup-plugin-copy": "^3.5.0",
"vitest": "^3.2.6"
}
}