ai-doc-sync
Version:
Tool to synchronize AI documentation to Cursor rules, Cline rules and Devin knowledge base
60 lines (59 loc) • 1.56 kB
JSON
{
"name": "ai-doc-sync",
"version": "1.0.2",
"description": "Tool to synchronize AI documentation to Cursor rules, Cline rules and Devin knowledge base",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ai-doc-sync": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/cli.js",
"start": "ts-node src/cli.ts",
"sync-document": "ts-node src/cli.ts sync",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"documentation",
"cursor",
"cline",
"devin"
],
"author": "Ryunosuke Watanabe",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fourdigit/ai-document-sync.git"
},
"bugs": {
"url": "https://github.com/fourdigit/ai-document-sync/issues"
},
"homepage": "https://github.com/fourdigit/ai-document-sync#readme",
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.14.1",
"axios": "^1.8.4",
"commander": "^13.1.0",
"dotenv": "^16.5.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"markdown-it": "^14.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/jsonfile": "^6.1.4",
"@types/yargs-parser": "^21.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.3.2"
}
}