vibe-rules
Version:
A utility for managing Cursor rules, Windsurf rules, and other AI prompts
64 lines (63 loc) • 1.69 kB
JSON
{
"name": "vibe-rules",
"version": "0.3.50",
"description": "A utility for managing Cursor rules, Windsurf rules, and other AI prompts",
"main": "dist/index.js",
"type": "module",
"bin": {
"vibe-rules": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/index.js",
"./llms": "./dist/llms/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "ts-node src/cli.ts",
"test": "bun run test:examples",
"lint": "oxlint",
"format": "prettier --write .",
"publish:npm": "bun run build && bun run test:examples && bun run format && npm publish",
"prepare": "vibe-rules install cursor || bun run src/cli.ts install cursor",
"build:examples": "bun run build && bun run scripts/build-examples.ts",
"test:examples": "bun run build:examples && bun run scripts/test-examples.ts"
},
"keywords": [
"cursor",
"windsurf",
"rules",
"ai",
"prompts"
],
"author": "Artem Murzin <hello@jart.lol>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FutureExcited/vibe-rules.git"
},
"bugs": {
"url": "https://github.com/FutureExcited/vibe-rules/issues"
},
"homepage": "https://github.com/FutureExcited/vibe-rules#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"fs-extra": "^11.3.0",
"import-meta-resolve": "^4.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.4",
"oxlint": "^1.0.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}