-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 945 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 945 Bytes
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
{
"name": "@linzjs/topographic-system-core",
"private": true,
"version": "0.6.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b",
"build:container": "lerna run build:container",
"lint": "oxlint . --type-aware --fix && oxfmt . --write",
"check": "oxlint . --type-aware && oxfmt . --check",
"test": "lerna run test",
"test:integration": "lerna run test:integration",
"bundle": "lerna run bundle --stream",
"lint:py": "uv run ruff check",
"format:py": "uv run ruff format --check",
"typecheck:py": "uv run mypy .",
"test:py": "uv run pytest"
},
"type": "module",
"engines": {
"node": "^24.5.0"
},
"devDependencies": {
"@types/node": "24.10.0",
"esbuild": "^0.27.2",
"lerna": "^9.0.3",
"typescript": "^5.9.3"
},
"dependencies": {
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.15.0",
"zod": "^4.2.1"
}
}