krackedmaps 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/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "krackedmaps",
3
+ "version": "0.1.0",
4
+ "description": "Interactive, themeable SVG map of Malaysia (16 states + 159 districts) — library, CLI, and MCP server. Zero runtime dependencies.",
5
+ "type": "module",
6
+ "bin": {
7
+ "krackedmaps": "bin/cli.js"
8
+ },
9
+ "main": "./dist/krackedmaps.cjs",
10
+ "module": "./dist/krackedmaps.esm.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/krackedmaps.esm.js",
16
+ "require": "./dist/krackedmaps.cjs"
17
+ },
18
+ "./data": {
19
+ "types": "./dist/data.d.ts",
20
+ "import": "./dist/data.esm.js"
21
+ },
22
+ "./css": "./dist/krackedmaps.css"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "bin"
27
+ ],
28
+ "sideEffects": [
29
+ "*.css"
30
+ ],
31
+ "engines": {
32
+ "node": ">=18"
33
+ },
34
+ "homepage": "https://map.themasterofnone.xyz",
35
+ "scripts": {
36
+ "build": "node build.mjs",
37
+ "dev": "python3 -m http.server 4173",
38
+ "bake": "python3 data/bake.py && python3 data/export.py"
39
+ },
40
+ "keywords": [
41
+ "malaysia",
42
+ "map",
43
+ "svg",
44
+ "geojson",
45
+ "choropleth",
46
+ "interactive",
47
+ "cli",
48
+ "mcp",
49
+ "kracked"
50
+ ],
51
+ "license": "MIT",
52
+ "devDependencies": {
53
+ "esbuild": "^0.28.1"
54
+ }
55
+ }