-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.52 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "datasus-viz",
"version": "1.7.6",
"private": true,
"description": "Geo-visualização (site + CLI) de microdados DATASUS — site MapLibre + DuckDB WASM e CLI consumindo @precisa-saude/datasus-sdk.",
"homepage": "https://github.com/Precisa-Saude/datasus-viz",
"bugs": "https://github.com/Precisa-Saude/datasus-viz/issues",
"repository": {
"type": "git",
"url": "https://github.com/Precisa-Saude/datasus-viz.git"
},
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "turbo run lint",
"llm:refine-mapping": "tsx scripts/llm-refine-mapping.ts",
"prepare": "husky",
"release": "semantic-release",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix --max-warnings 0 --no-warn-ignored"
],
"*.{js,json,md,css,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@precisa-saude/agent-instructions": "^1.5.0",
"@precisa-saude/commitlint-config": "^1.5.0",
"@precisa-saude/eslint-config": "^1.5.0",
"@precisa-saude/prettier-config": "^1.5.0",
"@precisa-saude/tsconfig": "^1.5.0",
"@precisa-saude/worktree-cli": "^1.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^2.1.8",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^3.0.2",
"semantic-release": "^25.0.3",
"tsup": "^8.3.5",
"tsx": "^4.21.0",
"turbo": "^2.3.3",
"typescript": "~5.7.3",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"worktree": {
"directoryPrefix": "datasus-viz",
"portRegistry": "/tmp/datasus-viz-worktree-ports.json",
"buildCommand": "pnpm turbo run build --filter=./packages/* --filter=./site",
"services": [
{
"name": "site",
"mainPort": 4322,
"featureBase": 4332,
"increment": 10,
"pnpmFilter": "@datasus-viz/site",
"logPrefix": "datasus-site"
}
]
}
}