-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
47
48
{
"name": "@vineyardbovines/openstreetmap-api",
"version": "0.1.7",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./src/index.ts"
}
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"format": "bun x @biomejs/biome check --write --no-errors-on-unmatched --files-ignore-unknown=true .",
"typecheck": "tsc --noEmit",
"spellcheck": "bun x cspell . --fail-fast --gitignore --no-progress --show-suggestions --cache",
"release": "release-it",
"commit": "git-cz"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@release-it/conventional-changelog": "^9.0.3",
"@types/bun": "latest",
"@types/geojson": "^7946.0.15",
"commitizen": "^4.3.1",
"commitlint": "^19.6.0",
"cz-conventional-changelog": "^3.3.0",
"lefthook": "^1.8.4",
"release-it": "^17.10.0",
"typescript": "latest",
"vitest": "^2.1.8",
"zod": "^3.23.8"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"keywords": [
"osm",
"openstreetmap",
"overpass",
"geojson"
]
}