-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.78 KB
/
package.json
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
84
85
86
{
"name": "@electron/lint-roller",
"version": "0.0.0-development",
"description": "Markdown linting helpers for Electron org repos",
"type": "module",
"engines": {
"node": ">=20.16.0 || >=22.4.0"
},
"bin": {
"lint-roller-markdown-links": "./dist/bin/lint-markdown-links.js",
"lint-roller-markdown-standard": "./dist/bin/lint-markdown-standard.js",
"lint-roller-markdown-ts-check": "./dist/bin/lint-markdown-ts-check.js",
"lint-roller-markdown-api-history": "./dist/bin/lint-markdown-api-history.js"
},
"files": [
"configs",
"dist",
"lib",
"markdownlint-rules"
],
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn run build",
"lint:eslint": "eslint \"{bin,lib,markdownlint-rules,tests}/**/*.{js,mjs,ts}\"",
"lint:eslint:fix": "eslint --fix \"{bin,lib,markdownlint-rules,tests}/**/*.{js,mjs,ts}\"",
"lint:markdown": "yarn run build && markdownlint-cli2 \"*.md\" && node ./dist/bin/lint-markdown-links.js \"*.md\"",
"lint:prettier": "prettier --check \"{bin,lib,markdownlint-rules,tests}/**/*.{js,mjs,ts}\"",
"lint:prettier:fix": "prettier --write \"{bin,lib,markdownlint-rules,tests}/**/*.{js,mjs,ts}\"",
"lint": "yarn run lint:prettier && yarn run lint:markdown",
"lint:fix": "yarn run lint:eslint:fix && yarn run lint:prettier:fix",
"test": "yarn run build && vitest run --reporter=verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/lint-roller.git"
},
"author": "David Sanders <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/electron/lint-roller/issues"
},
"homepage": "https://github.com/electron/lint-roller#readme",
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@electron-internal/eslint-config": "^1.0.1",
"@types/balanced-match": "^3.0.2",
"@types/glob": "^8.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "22.8.7",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"markdownlint-cli2": "^0.14.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vitest": "^2.1.4"
},
"dependencies": {
"@dsanders11/vscode-markdown-languageservice": "^0.3.0",
"ajv": "^8.16.0",
"balanced-match": "^3.0.1",
"glob": "^10.4.5",
"hast-util-from-html": "^2.0.1",
"markdown-it": "^14.1.0",
"mdast-util-from-markdown": "^1.3.0",
"standard": "^17.0.0",
"unist-util-visit": "^4.1.2",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.8",
"vscode-uri": "^3.0.8",
"yaml": "^2.4.5"
},
"peerDependencies": {
"typescript": ">= 4.7.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}