rwanda-geo-data 0.1.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/LICENSE +21 -0
- package/README.md +110 -0
- package/dist/index.cjs +17614 -0
- package/dist/index.d.cts +61 -0
- package/dist/index.d.ts +61 -0
- package/dist/index.js +17597 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rwanda-geo-data",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Typed, zero-dependency Rwanda administrative geography data (provinces, districts, sectors, cells, villages) with a fast query API.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "SHUMBUSHO Irumva",
|
|
7
|
+
"email": "irumvashumbusho@gmail.com",
|
|
8
|
+
"url": "https://irumva.dev"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/kent250/rwanda-geo-data.git"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/kent250/rwanda-geo-data#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/kent250/rwanda-geo-data/issues"
|
|
18
|
+
},
|
|
19
|
+
"type": "module",
|
|
20
|
+
"main": "./dist/index.cjs",
|
|
21
|
+
"module": "./dist/index.js",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"import": "./dist/index.js",
|
|
27
|
+
"require": "./dist/index.cjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"files": ["dist"],
|
|
31
|
+
"sideEffects": false,
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsup",
|
|
34
|
+
"dev": "tsup --watch",
|
|
35
|
+
"test": "vitest run",
|
|
36
|
+
"test:watch": "vitest",
|
|
37
|
+
"lint": "biome check .",
|
|
38
|
+
"lint:fix": "biome check --write .",
|
|
39
|
+
"generate:data": "tsx scripts/generate-data.ts",
|
|
40
|
+
"prepublishOnly": "npm run lint && npm run test && npm run build"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"rwanda",
|
|
44
|
+
"geography",
|
|
45
|
+
"provinces",
|
|
46
|
+
"districts",
|
|
47
|
+
"sectors",
|
|
48
|
+
"cells",
|
|
49
|
+
"villages",
|
|
50
|
+
"administrative-divisions",
|
|
51
|
+
"location-data"
|
|
52
|
+
],
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@biomejs/biome": "^1.9.4",
|
|
55
|
+
"@types/node": "^22.10.2",
|
|
56
|
+
"tsup": "^8.3.5",
|
|
57
|
+
"tsx": "^4.19.2",
|
|
58
|
+
"typescript": "^5.7.2",
|
|
59
|
+
"vitest": "^2.1.8"
|
|
60
|
+
}
|
|
61
|
+
}
|