{
	"name": "@jolli.ai/cli",
	"version": "0.99.5",
	"description": "AI development process auto-documentation tool - generates structured commit summaries from Claude Code, Codex, Gemini, OpenCode, Cursor, and Copilot sessions",
	"main": "./dist/Api.js",
	"types": "./dist/Api.d.ts",
	"type": "module",
	"bin": {
		"jolli": "dist/Cli.js"
	},
	"exports": {
		".": {
			"types": "./dist/Api.d.ts",
			"import": "./dist/Api.js",
			"default": "./dist/Api.js"
		},
		"./api": {
			"types": "./dist/Api.d.ts",
			"import": "./dist/Api.js",
			"default": "./dist/Api.js"
		},
		"./package.json": "./package.json"
	},
	"files": [
		"dist/",
		"schemas/",
		"README.md"
	],
	"scripts": {
		"all": "npm run clean && npm run build && npm run lint && npm run test",
		"build": "vite build && tsc --project tsconfig.build.json",
		"postbuild": "node -e \"require('fs').chmodSync('dist/Cli.js', 0o755)\"",
		"clean": "rimraf dist/",
		"typecheck": "tsc --noEmit",
		"lint": "biome check --error-on-warnings",
		"lint:fix": "biome check --write",
		"cli": "tsx src/Cli.ts",
		"cli:build": "npm run build && node dist/Cli.js",
		"gen:telemetry-doc": "tsx scripts/gen-telemetry-doc.mjs",
		"test": "vitest run --coverage",
		"test:watch": "vitest",
		"test:acceptance": "vitest run --config vitest.acceptance.config.ts",
		"postinstall": "node -e \"require('fs').existsSync('dist/PostInstall.js') && require('child_process').spawnSync(process.execPath,['dist/PostInstall.js'],{stdio:'inherit'})\""
	},
	"keywords": [
		"ai",
		"documentation",
		"git-hooks",
		"claude-code",
		"codex",
		"gemini",
		"opencode",
		"cursor",
		"copilot",
		"commit-summary",
		"dev-memory"
	],
	"author": "Jolli",
	"license": "Apache-2.0",
	"repository": {
		"type": "git",
		"url": "https://github.com/jolliai/jolliai",
		"directory": "cli"
	},
	"homepage": "https://github.com/jolliai/jolliai/tree/main/cli#readme",
	"bugs": {
		"url": "https://github.com/jolliai/jolliai/issues"
	},
	"dependencies": {
		"@anthropic-ai/sdk": "^0.39.0",
		"@modelcontextprotocol/sdk": "^1.0.0",
		"@orama/orama": "^3.0.0",
		"@orama/plugin-data-persistence": "^3.0.0",
		"commander": "^13.1.0",
		"open": "^11.0.0",
		"semver": "^7.8.1"
	},
	"devDependencies": {
		"@biomejs/biome": "2.2.6",
		"@types/node": "^22.5.0",
		"@types/semver": "^7.7.1",
		"@vitest/coverage-v8": "^4.1.1",
		"fast-check": "^3.23.2",
		"rimraf": "^6.0.1",
		"tsx": "^4.22.4",
		"typescript": "^5.7.2",
		"vite": "^8.0.16",
		"vitest": "^4.1.1"
	},
	"publishConfig": {
		"access": "public"
	},
	"engines": {
		"node": ">=22.5.0"
	}
}
