-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 949 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 949 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
{
"dependencies": {
"markdownlint-cli": "^0.47.0",
"markdownlint-rule-search-replace": "^1.2.0",
"prettier": "^3.6.2"
},
"type": "module",
"devDependencies": {
"@blaahaj/lint-git-tree": "^1.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.14.1",
"octokit": "^5.0.3",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsc -p support/tsconfig.json",
"lint": "./lint",
"lint:fix": "./lint --fix",
"lint:validate-links": "./lint validate-links",
"lint:validate-links:watch": "node support/dist/watch.js ./lint validate-links",
"lint:watch": "node support/dist/watch.js ./lint",
"generate:learning-goals": "node support/dist/documentationHelpers/generateLearningGoals.js",
"generate:gitbook-summary": "node support/dist/documentationHelpers/generateGitBookSummary.js",
"generate:contributors": "node support/dist/documentationHelpers/generateContributors.js"
}
}