-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) 路 728 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) 路 728 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
{
"name": "contextlint",
"private": true,
"description": "Rule-based linter for structured Markdown documents",
"packageManager": "bun@1.3.13",
"workspaces": ["packages/*"],
"scripts": {
"build": "bun run --filter '*' build",
"test": "bun test",
"lint": "eslint .",
"lint:docs": "node packages/cli/dist/index.js",
"typecheck": "bun run --filter '*' typecheck"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.10",
"@types/node": "^26.1.0",
"@typescript/native": "npm:typescript@^7.0.2",
"eslint": "^10.0.3",
"markdownlint-cli2": "^0.23.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.56.1"
}
}