-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 797 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 797 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
{
"name": "previred-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Monorepo: a shared TypeScript Previred core consumed by a CLI (and later an MCP server). Companion to the sii tooling, for imposiciones laborales.",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint packages",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@types/node": "^20.16.0",
"eslint": "^9.14.0",
"prettier": "^3.3.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.0"
}
}