-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@openaip/coordinate-parser",
"version": "0.9.7",
"description": "Parser that extracts coordinates from a variety of formatted lat/lon strings.",
"keywords": [
"geospatial",
"openaip",
"coordinates",
"geographic",
"parser",
"longitude",
"latitude",
"coordinate-parser"
],
"authors": [
{
"name": "Stephan Besser",
"email": "[email protected]",
"role": "Lead developer"
}
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openaip/openaip-coordinate-parser.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bugs": {
"url": "https://github.com/openaip/openaip-coordinate-parser/issues"
},
"homepage": "https://github.com/openaip/openaip-coordinate-parser#readme",
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && npm run rename:esm",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"clean": "rimraf dist",
"rename:esm": "/bin/bash ./prepare-esm.sh",
"prepack": "npm run clean && npm run build",
"sca:watch:types": "npx chokidar '**/*.js' '**/*.ts' -c 'npm run tsc:run'",
"sca:watch:lint": "npx chokidar '**/*.js' '**/*.ts' -c 'npm run lint'",
"test": "vitest run --coverage",
"tsc:run": "tsc --noEmit",
"lint": "eslint src --cache",
"format": "prettier --write .",
"run-security-audit": "npm audit --omit=dev",
"update-packages": "ncu --target minor --upgrade && npm install && npm audit fix",
"depcheck": "npx depcheck --oneline --skip-missing=true --ignore-patterns=dist,coverage,*.log"
},
"dependencies": {
"clean-deep": "^3.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"chokidar-cli": "^3.0.0",
"depcheck": "^1.4.7",
"eslint": "<=9.14.0",
"eslint-plugin-security": "^3.0.1",
"npm-check-updates": "^16.14.20",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^5.4.11",
"vitest": "^2.1.8"
},
"comments": {
"eslint": "TODO Upgrade to ESLint 8.15 when fixed: https://github.com/eslint/eslint/issues/19134"
}
}