@countrystatecity/cli 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +146 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1578 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@countrystatecity/cli",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Official CLI for the Country State City API - search, explore, and generate code from geographic data",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist",
|
|
7
|
+
"README.md",
|
|
8
|
+
"LICENSE"
|
|
9
|
+
],
|
|
10
|
+
"bin": {
|
|
11
|
+
"csc": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=18"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
19
|
+
"dev": "tsx src/index.ts",
|
|
20
|
+
"test": "vitest",
|
|
21
|
+
"lint": "eslint src/",
|
|
22
|
+
"prepublishOnly": "npm run build"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"country",
|
|
26
|
+
"state",
|
|
27
|
+
"city",
|
|
28
|
+
"geography",
|
|
29
|
+
"cli",
|
|
30
|
+
"country-state-city",
|
|
31
|
+
"geolocation",
|
|
32
|
+
"iso",
|
|
33
|
+
"dropdown",
|
|
34
|
+
"seed",
|
|
35
|
+
"code-generator"
|
|
36
|
+
],
|
|
37
|
+
"author": "dr5hn",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/dr5hn/countrystatecity-cli.git"
|
|
42
|
+
},
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@inquirer/search": "^4.1.6",
|
|
48
|
+
"@inquirer/select": "^5.1.2",
|
|
49
|
+
"axios": "^1.7.0",
|
|
50
|
+
"chalk": "^5.4.0",
|
|
51
|
+
"cli-table3": "^0.6.5",
|
|
52
|
+
"commander": "^13.0.0",
|
|
53
|
+
"conf": "^13.0.0",
|
|
54
|
+
"open": "^10.0.0",
|
|
55
|
+
"ora": "^8.0.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/node": "^22.0.0",
|
|
59
|
+
"eslint": "^9.0.0",
|
|
60
|
+
"tsup": "^8.0.0",
|
|
61
|
+
"tsx": "^4.0.0",
|
|
62
|
+
"typescript": "^5.7.0",
|
|
63
|
+
"vitest": "^3.0.0"
|
|
64
|
+
}
|
|
65
|
+
}
|