-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "zod-geojson",
"version": "0.0.3",
"description": "Zod schemas for GeoJSON",
"repository": {
"type": "git",
"url": "https://github.com/reilem/zod-geojson"
},
"author": "Reinert Lemmens",
"license": "MIT",
"keywords": [
"zod",
"geojson",
"schema",
"validation"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"packageManager": "[email protected]",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"clean": "rimraf lib",
"build": "pnpm clean && tsc -p tsconfig.build.json",
"typecheck": "tsc",
"prettiercheck": "prettier -c .",
"circularcheck": "madge --circular --extensions ts ./src"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/geojson": "^7946.0.14",
"jest": "^29.7.0",
"madge": "^8.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "~5.6.3",
"zod": "^3.23.8"
}
}