forked from mikeartee/kiro-steering-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 843 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
{
"name": "kiro-steering-docs-enhancement",
"version": "1.0.0",
"description": "Tools for enhancing steering documents with recommendation metadata",
"private": true,
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"enhance-frontmatter": "node out/scripts/enhance-frontmatter.js",
"validate-frontmatter": "node out/scripts/validate-frontmatter.js",
"lint:md": "markdownlint \"**/*.md\" --ignore node_modules --ignore _drafts",
"validate": "npm run compile && npm run validate-frontmatter && npm run lint:md",
"test": "node --test out/tests/**/*.test.js"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.x",
"fast-check": "^4.3.0",
"markdownlint-cli": "^0.43.0",
"typescript": "^5.1.0"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}