-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.36 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
{
"name": "country-state-data",
"version": "1.0.1",
"description": "A comprehensive JSON dataset containing countries, states, cities, regions, and languages with TypeScript support",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"countries.json",
"states.json",
"cities.json",
"regions.json",
"languages.json",
"types.d.ts",
"README.md"
],
"keywords": [
"countries",
"states",
"cities",
"regions",
"languages",
"json",
"data",
"typescript",
"iso",
"geographical",
"location",
"address",
"dropdown",
"form",
"validation",
"i18n",
"internationalization"
],
"author": "d3oxy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/d3oxy/country-state-data.git"
},
"bugs": {
"url": "https://github.com/d3oxy/country-state-data/issues"
},
"homepage": "https://github.com/d3oxy/country-state-data#readme",
"scripts": {
"test": "echo \"No tests specified\" && exit 0"
},
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./countries": "./countries.json",
"./states": "./states.json",
"./cities": "./cities.json",
"./regions": "./regions.json",
"./languages": "./languages.json",
"./types": "./types.d.ts"
}
}