-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.86 KB
/
package.json
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
70
71
72
73
74
{
"name": "localtime-cli",
"version": "0.2.3",
"description": "Command-line tool to look up the local time (and weather) for time zones, countries and cities with auto-completion.",
"main": "dist/localtime.js",
"type": "module",
"bin": {
"localtime": "dist/localtime.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"localtime": "tsx ./src/localtime.ts",
"prepublishOnly": "pnpm run build"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"localtime.gif"
],
"keywords": [
"time",
"localtime",
"timezones",
"cli",
"console",
"terminal",
"weather",
"weather-cli",
"openweather",
"openweather-map"
],
"author": "Joost Schuur <jschuur@jschuur.com>",
"license": "ISC",
"dependencies": {
"@vvo/tzdb": "^6.93.0",
"city-timezones": "^1.2.1",
"commander": "^10.0.0",
"conf": "^11.0.1",
"countries-and-timezones": "^3.4.1",
"dotenv": "^16.0.3",
"inquirer": "^9.1.4",
"inquirer-autocomplete-prompt": "^3.0.0",
"jsonfile": "^6.1.0",
"openweather-api-node": "^2.0.0",
"ora": "^6.1.2",
"picocolors": "^1.0.0",
"pluralize": "^8.0.0",
"terminal-link": "^3.0.0",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/inquirer-autocomplete-prompt": "^3.0.0",
"@types/jsonfile": "^6.1.1",
"@types/pluralize": "^0.0.29",
"@types/update-notifier": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"tsx": "^3.12.2",
"typescript": "^4.9.5"
},
"homepage": "https://github.com/jschuur/localtime-cli#readme",
"bugs": {
"url": "https://github.com/jschuur/localtime-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jschuur/localtime-cli.git"
}
}