mirror of
https://github.com/NomaDamas/k-skill.git
synced 2026-09-14 16:37:18 +08:00
38 lines
838 B
JSON
38 lines
838 B
JSON
{
|
|
"name": "@nomadamas/k-skill",
|
|
"version": "0.8.0",
|
|
"description": "k-skill unified CLI: assembles runtime-aware skill instructions and ships bundled helper files",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"k-skill": "bin/k-skill.js"
|
|
},
|
|
"main": "src/assemble.js",
|
|
"files": [
|
|
"bin",
|
|
"src",
|
|
"templates",
|
|
"skills",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/NomaDamas/k-skill.git"
|
|
},
|
|
"keywords": [
|
|
"k-skill",
|
|
"korea",
|
|
"agent-skills",
|
|
"cli"
|
|
],
|
|
"scripts": {
|
|
"lint": "node --check bin/k-skill.js && node --check src/assemble.js && node --check src/detect.js && node --check src/execute.js && node --check test/cli.test.js",
|
|
"test": "node --test"
|
|
}
|
|
}
|