-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 896 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 896 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
{
"name": "logo-designer-skill",
"version": "1.0.0",
"private": true,
"description": "Claude Code skill for designing and iterating on logos using SVG",
"scripts": {
"test": "npm run test:lineage && npm run test:export",
"test:export": "node --test tests/export.test.mjs",
"test:lineage": "node --test tests/lineage-handoff.test.mjs",
"validate": "npm run validate:md && npm run validate:skills && npm run validate:links",
"validate:md": "npx markdownlint-cli2 'skills/**/*.md' 'README.md'",
"validate:skills": "./scripts/validate-skills.sh",
"validate:links": "npx markdown-link-check -q skills/*/SKILL.md README.md || true",
"validate:plugin": "claude plugin validate ."
},
"devDependencies": {
"markdown-link-check": "^3.15.0",
"markdownlint-cli2": "^0.18.1"
},
"overrides": {
"js-yaml": "4.3.1",
"markdown-it": "15.0.0"
}
}