{ "name": "dsh-skills-nexus", "version": "0.3.0", "description": "Universal DSH skill adapter — register any GitHub SKILL.md repo as a DSH skill via one command.", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/xiaxi626/dsh-skills-nexus.git" }, "homepage": "https://github.com/xiaxi626/dsh-skills-nexus", "bugs": { "url": "https://github.com/xiaxi626/dsh-skills-nexus/issues" }, "type": "module", "main": "lib/index.js", "dsh": { "bundle": { "patch": "cordis.patch.yml" } }, "bin": { "dsh-skills-nexus": "lib/cli/index.js" }, "exports": { ".": "./lib/index.js", "./resolve": "./lib/resolve.js", "./package.json": "./package.json" }, "files": [ "lib", "cordis.patch.yml", "README.md" ], "scripts": { "build": "tsc -p tsconfig.json", "dev": "tsc -p tsconfig.json --watch", "typecheck": "tsc -p tsconfig.json --noEmit", "test": "node --import tsx --test test/add.test.ts test/args.test.ts test/frontmatter.test.ts test/git.test.ts test/link.test.ts test/locator.test.ts test/manifest.test.ts test/repo-kind.test.ts test/resolve.test.ts test/toggle.test.ts test/update.test.ts", "test:build": "tsc -p tsconfig.test.json", "lint": "eslint .", "lint:fix": "eslint . --fix", "cli": "node --import tsx src/cli/index.ts" }, "dependencies": { "yaml": "^2.5.1" }, "devDependencies": { "@types/node": "^20.14.0", "eslint": "^9.39.4", "tsx": "^4.19.0", "typescript": "^5.5.4", "typescript-eslint": "^8.67.0" }, "engines": { "node": ">=20.0.0" } }