-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 785 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
{
"name": "html-article-extractor-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "eslint packages --max-warnings=0",
"lint:fix": "eslint packages --fix",
"typecheck": "tsc -b --pretty false",
"validate": "npm run lint && npm run typecheck && npm test",
"prepare": "husky"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/jsdom": "^27.0.0",
"@types/node": "^24.0.0",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"tsx": "^4.20.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.0.0"
}
}