Files
slm-design/package.json

25 lines
754 B
JSON
Raw Normal View History

2026-07-24 14:35:35 +03:00
{
"name": "slm-design",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:skill",
"build:skill": "node scripts/build-skill.mjs",
2026-07-25 17:56:16 +03:00
"check": "npm run build && npm run check:skill && npm run check:docs-all",
"check:skill": "node scripts/check-skill.mjs",
"check:docs": "node scripts/check-docs.mjs",
"check:docs-search": "node scripts/check-docs-search.mjs",
"check:docs-all": "npm run check:docs && npm run docs:build && npm run check:docs-search",
"docs:dev": "vitepress dev site",
"docs:build": "vitepress build site",
"docs:preview": "vitepress preview site"
2026-07-24 14:35:35 +03:00
},
"engines": {
"node": ">=20"
2026-07-25 17:56:16 +03:00
},
"devDependencies": {
"minisearch": "7.2.0",
"vitepress": "1.6.4"
2026-07-24 14:35:35 +03:00
}
}