-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 KB
/
package.json
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
{
"name": "idn-area-data",
"version": "3.1.1",
"description": "Indonesia administrative area data, based on the latest regulation",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["data", "lib"],
"workspaces": ["./examples/*"],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"build": "tsup src/index.ts --format esm -d lib --clean --dts src/index.ts --sourcemap",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fityannugroho/idn-area-data.git"
},
"keywords": ["idn-area", "indonesia", "wilayah", "area", "data"],
"author": "fityannugroho <[email protected]> (https://github.com/fityannugroho)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fityannugroho/idn-area-data/issues"
},
"homepage": "https://github.com/fityannugroho/idn-area-data#readme",
"funding": "https://github.com/sponsors/fityannugroho",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/node": "^22.7.4",
"@types/papaparse": "^5.3.14",
"@vitest/coverage-v8": "^2.1.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"dependencies": {
"papaparse": "^5.4.1"
}
}