-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.52 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
64
65
66
67
68
69
{
"name": "go-touch-grass",
"version": "1.2.0",
"description": "A Fun CLI reminder for developers to go outside and touch grass. Persistent streak tracking, ASCII art scenes, emoji-packed social sharing, and optional countdown timer.",
"homepage": "https://github.com/lexCoder2/touch-grass-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/lexCoder2/touch-grass-js.git"
},
"bugs": {
"url": "https://github.com/lexCoder2/touch-grass-js/issues"
},
"author": "Alex Rodriguez <hi@iarodriguez.com>",
"type": "module",
"bin": {
"go-touch-grass": "./bin/touch-grass.js"
},
"files": [
"bin/",
"src/",
"LICENSE",
"README.md",
"logo.svg",
"demo.gif"
],
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node bin/touch-grass.js",
"lint": "node --check src/*.js bin/*.js",
"record": "./scripts/record-demo.sh"
},
"keywords": [
"cli",
"fun",
"grass",
"developer-health",
"humor",
"productivity",
"outdoors",
"streak",
"sarcasm",
"terminal",
"wellness",
"break-reminder",
"burnout-prevention",
"mental-health",
"work-life-balance",
"social-sharing",
"twitter",
"linkedin",
"instagram",
"nodejs",
"npm",
"npx",
"developers"
],
"license": "GPL-3.0-only",
"dependencies": {
"chalk": "^5.4.1",
"conf": "^15.1.0",
"meow": "^14.0.0",
"open": "^11.0.0",
"@inquirer/prompts": "^8.3.0",
"boxen": "^8.0.1",
"log-update": "^7.2.0"
}
}