-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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": "@geonovum/ogc-checker",
"version": "1.0.1",
"packageManager": "pnpm@10.33.0",
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "https://github.com/Geonovum/ogc-checker"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"bin": {
"ogc-checker": "./dist/cli.mjs"
},
"scripts": {
"dev": "vite --open",
"build": "tsc -b && pnpm run build:cli && vite build",
"build:cli": "tsdown src/cli.ts --format esm --platform node --sourcemap --out-dir dist --clean",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@geonovum/standards-checker": "1.0.8",
"@geonovum/standards-checker-ui": "1.0.8",
"@stoplight/spectral-rulesets": "^1.22.1",
"luxon": "^3.7.2",
"ramda": "^0.32.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/luxon": "^3.7.1",
"@types/ramda": "^0.31.1",
"eslint": "^10.2.0",
"postcss": "^8.5.9",
"prettier": "^3.8.3",
"tailwindcss": "^4.2.2",
"tsdown": "^0.21.8",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}