bd-geo-location 1.0.0

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/package.json ADDED
@@ -0,0 +1,91 @@
1
+ {
2
+ "name": "bd-geo-location",
3
+ "version": "1.0.0",
4
+ "description": "Bangladesh geographical location data - Divisions, Districts, Upazilas/Thanas, Unions, Pourosovas, and Villages",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "require": "./dist/index.js",
11
+ "import": "./dist/index.mjs",
12
+ "types": "./dist/index.d.ts"
13
+ },
14
+ "./react": {
15
+ "require": "./dist/react.js",
16
+ "import": "./dist/react.mjs",
17
+ "types": "./dist/react.d.ts"
18
+ },
19
+ "./vue": {
20
+ "require": "./dist/vue.js",
21
+ "import": "./dist/vue.mjs",
22
+ "types": "./dist/vue.d.ts"
23
+ }
24
+ },
25
+ "scripts": {
26
+ "build": "tsup",
27
+ "build:watch": "tsup --watch",
28
+ "dev": "tsup --watch",
29
+ "prepublishOnly": "npm run build",
30
+ "data:validate": "node scripts/validate-data.js",
31
+ "data:test": "node scripts/test-data.js",
32
+ "test": "echo \"Error: no test specified\" && exit 1"
33
+ },
34
+ "keywords": [
35
+ "bangladesh",
36
+ "geo",
37
+ "geography",
38
+ "location",
39
+ "division",
40
+ "district",
41
+ "upazila",
42
+ "thana",
43
+ "union",
44
+ "pourosova",
45
+ "municipality",
46
+ "village",
47
+ "bangladeshi",
48
+ "administrative",
49
+ "regions",
50
+ "typescript",
51
+ "react",
52
+ "vue",
53
+ "angular"
54
+ ],
55
+ "author": "Mazharul Islam",
56
+ "license": "MIT",
57
+ "repository": {
58
+ "type": "git",
59
+ "url": ""
60
+ },
61
+ "files": [
62
+ "dist"
63
+ ],
64
+ "devDependencies": {
65
+ "@rollup/plugin-commonjs": "^29.0.2",
66
+ "@rollup/plugin-node-resolve": "^16.0.3",
67
+ "@rollup/plugin-typescript": "^12.3.0",
68
+ "@types/node": "^25.5.0",
69
+ "@types/react": "^19.0.12",
70
+ "ajv": "^8.18.0",
71
+ "ajv-formats": "^3.0.1",
72
+ "react": "^19.2.4",
73
+ "rollup": "^4.60.1",
74
+ "tslib": "^2.8.1",
75
+ "tsup": "^8.5.1",
76
+ "typescript": "^6.0.2",
77
+ "vue": "^3.5.31"
78
+ },
79
+ "peerDependencies": {
80
+ "react": ">=16.8.0",
81
+ "vue": "^3.5.0"
82
+ },
83
+ "peerDependenciesMeta": {
84
+ "react": {
85
+ "optional": true
86
+ },
87
+ "vue": {
88
+ "optional": true
89
+ }
90
+ }
91
+ }