ai-dev-diary
Version:
Intelligent development diary system for AI-assisted projects
90 lines (89 loc) • 2.17 kB
JSON
{
"name": "ai-dev-diary",
"version": "1.0.0",
"description": "Intelligent development diary system for AI-assisted projects",
"keywords": [
"ai",
"diary",
"development",
"learning",
"context",
"knowledge-management",
"ai-agents",
"developer-tools",
"team-collaboration",
"ai-assisted-development",
"development-diary",
"knowledge-capture"
],
"homepage": "https://github.com/andre/ai-dev-diary",
"bugs": {
"url": "https://github.com/andre/ai-dev-diary/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andre/ai-dev-diary.git"
},
"license": "MIT",
"author": "Andre <andre@example.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ai-diary": "./dist/cli.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build && npm run test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"dayjs": "^1.11.10",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"inquirer": "^8.2.6",
"marked": "^12.0.0",
"ora": "^5.4.1",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
}
}