UNPKG

commit-parser

Version:

A tiny parser for conventional commits that extracts metadata like type, scope, breaking changes and references

70 lines (69 loc) 1.64 kB
{ "name": "commit-parser", "version": "1.3.0", "description": "A tiny parser for conventional commits that extracts metadata like type, scope, breaking changes and references", "type": "module", "author": { "name": "Lucas Nørgård", "email": "lucasnrgaard@gmail.com", "url": "https://luxass.dev" }, "packageManager": "pnpm@10.22.0", "license": "MIT", "homepage": "https://github.com/luxass/commit-parser", "repository": { "type": "git", "url": "git+https://github.com/luxass/commit-parser.git" }, "bugs": "https://github.com/luxass/commit-parser/issues", "keywords": [ "commit", "convetional", "commit-parser", "parser" ], "imports": { "#types": "./src/types.ts", "#git": "./src/git.ts", "#commits": "./src/commits.ts", "#parse": "./src/parse.ts", "#grouping": "./src/grouping.ts" }, "exports": { ".": "./dist/index.mjs", "./package.json": "./package.json" }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "publishConfig": { "access": "public" }, "files": [ "dist" ], "scripts": { "build": "tsdown", "dev": "tsdown --watch", "test": "vitest --run", "lint": "eslint .", "typecheck": "tsc --noEmit" }, "dependencies": { "quansync": "0.2.11" }, "devDependencies": { "@luxass/eslint-config": "6.0.3", "@types/node": "22.12.0", "eslint": "9.39.1", "publint": "0.3.15", "tsdown": "0.16.4", "typescript": "5.9.3", "vitest": "4.0.9" }, "pnpm": { "overrides": { "rolldown": "1.0.0-beta.50" } } }