-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.36 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@studnicky/locus",
"version": "0.1.0",
"description": "Geo resolution, spatial primitives, and time conversion utilities for @studnicky packages.",
"author": "Andrew Studnicky <a.j.studnicky@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Studnicky/locus.git"
},
"bugs": {
"url": "https://github.com/Studnicky/locus/issues"
},
"private": true,
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"predocs:build": "node scripts/stamp-version.mjs",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "oxlint packages && eslint . && pnpm run lint:docs",
"lint:docs": "node scripts/check-docs-includes.mjs",
"lint:fix": "oxlint packages --fix && eslint . --fix",
"stamp-version": "node scripts/stamp-version.mjs",
"stamp-version:check": "node scripts/stamp-version.mjs --check",
"test": "pnpm -r --if-present run test",
"typecheck": "tsc -b"
},
"devDependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.1",
"@lezer/highlight": "^1.2.3",
"@studnicky/eslint-config": "^5.1.0",
"@studnicky/geo-boundary-layer-kit": "workspace:^",
"@studnicky/geo-layer-county": "workspace:^",
"@studnicky/geo-layer-postal": "workspace:^",
"@studnicky/geo-layer-state": "workspace:^",
"@studnicky/geo-layer-voting-district": "workspace:^",
"@studnicky/geo-resolver": "workspace:^",
"@studnicky/grid-schemes": "workspace:^",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^26.0.1",
"eslint": "^10.5.0",
"eslint-plugin-import-x": "^4.17.0",
"eslint-plugin-perfectionist": "^5.9.1",
"eslint-plugin-regexp": "^3.1.0",
"eslint-plugin-unused-imports": "^4.4.1",
"maplibre-gl": "^5.24.0",
"mermaid": "^11.15.0",
"oxlint": "^1.71.0",
"sucrase": "^3.35.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vue": "^3.5.38"
},
"packageManager": "pnpm@10.32.1"
}