UNPKG

@issue-linker/core

Version:
84 lines (83 loc) โ€ข 2.89 kB
{ "name": "@issue-linker/core", "version": "1.5.1", "description": "Core library for issue-linker functionality", "keywords": [ "github", "issues", "validation", "library", "core", "github-api", "octokit", "issue-tracker", "pull-request", "branch-validation", "commit-validation", "github-enterprise", "issue-comment", "typescript" ], "author": "Suguru Takahashi", "license": "MIT", "homepage": "https://github.com/sugurutakahashi-1234/issue-linker#readme", "repository": { "type": "git", "url": "https://github.com/sugurutakahashi-1234/issue-linker.git" }, "bugs": { "url": "https://github.com/sugurutakahashi-1234/issue-linker/issues" }, "type": "module", "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "scripts": { "๐Ÿ”จ": "========== Build & Type Check ==========", "build": "tsc -p tsconfig.build.json", "typecheck": "tsc --noEmit -p tsconfig.json", "๐Ÿงช": "========== Test ==========", "test": "bun test", "test:quiet": "bun test > /dev/null 2>&1 && echo 'โœ… Tests passed' || (echo 'โŒ Tests failed' && exit 1)", "๐ŸŽจ": "========== Code Quality ==========", "fix": "biome check --write --unsafe .", "check": "biome check .", "๐Ÿ“š": "========== Documentation ==========", "docs:deps-graph:detail": "tsg --tsconfig ../../tsconfig.typescript-graph.json --LR --abstraction packages/cli --abstraction packages/action --md ../../docs/reports/dependencies/core-detail.md", "docs:deps-graph:architecture": "tsg --tsconfig ../../tsconfig.typescript-graph.json --LR --abstraction packages/cli --abstraction packages/action --abstraction src/domain --abstraction src/application --abstraction src/infrastructure --md ../../docs/reports/dependencies/core-architecture.md", "docs:deps-graph": "bun run docs:deps-graph:detail && bun run docs:deps-graph:architecture", "๐Ÿ“ฆ": "========== Publishing ==========", "npm-publish:dry-run": "bun publish --dry-run", "npm-publish": "bun publish --access public", "๐Ÿš€": "========== CI & Clean ==========", "ci": "bun run fix && bun run check && bun run build && bun run typecheck && bun run test:quiet", "clean": "rm -rf dist *.tsbuildinfo" }, "dependencies": { "@octokit/plugin-retry": "^8.0.1", "@octokit/plugin-throttling": "^11.0.1", "@octokit/request-error": "^7.0.0", "@t3-oss/env-core": "^0.13.8", "micromatch": "^4.0.8", "octokit": "^5.0.3", "simple-git": "^3.28.0", "valibot": "^1.1.0" }, "devDependencies": { "@biomejs/biome": "^2.2.0", "@types/micromatch": "^4.0.9", "@ysk8hori/typescript-graph": "^0.26.4", "typescript": "^5.9.2" } }