UNPKG

knowhub

Version:

Synchronize AI coding–agent knowledge files (rules, templates, guidelines) across your project.

62 lines (61 loc) 1.84 kB
{ "name": "knowhub", "version": "1.1.0", "description": "Synchronize AI coding–agent knowledge files (rules, templates, guidelines) across your project.", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "module": "dist/index.js", "bin": { "knowhub": "./bin/knowhub.js" }, "files": ["bin/**/*", "dist/**/*", "templates/**/*"], "scripts": { "tsc": "tsc", "build": "tsc -p tsconfig.build.json", "check": "biome check .", "check:write": "biome check --write .", "knowhub": "bun run src/knowhub.ts", "test": "bun test", "test:watch": "bun test --watch", "prepublish": "bun run build", "prepare": "husky", "prepublishOnly": "bun run build" }, "repository": { "type": "git", "url": "git+https://github.com/yujiosaka/knowhub.git" }, "keywords": ["ai", "coding-assistant", "developer-tools"], "author": "Yuji Isobe", "license": "MIT", "bugs": { "url": "https://github.com/yujiosaka/knowhub/issues" }, "homepage": "https://github.com/yujiosaka/knowhub#readme", "devDependencies": { "@biomejs/biome": "^1.9.4", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@octokit/rest": "^22.0.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^11.0.3", "@semantic-release/npm": "^12.0.1", "@semantic-release/release-notes-generator": "^14.0.3", "@types/bun": "^1.2.15", "husky": "^9.1.7", "lint-staged": "^16.1.0", "semantic-release": "^24.2.5" }, "peerDependencies": { "typescript": "^5" }, "dependencies": { "cosmiconfig": "^9.0.0" }, "lint-staged": { "**/*.*": ["biome check --write --no-errors-on-unmatched"] } }