73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"name": "@intellectronica/ruler",
|
|
"version": "0.3.40",
|
|
"description": "Ruler — apply the same rules to all coding agents",
|
|
"main": "dist/lib.js",
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:integration": "jest tests/e2e/ruler.integration.test.ts --verbose",
|
|
"build": "tsc",
|
|
"prepare": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/intellectronica/ruler.git"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"developer-tools",
|
|
"copilot",
|
|
"codex",
|
|
"claude",
|
|
"cursor",
|
|
"aider",
|
|
"config",
|
|
"rules",
|
|
"automation"
|
|
],
|
|
"author": "Eleanor Berger",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/intellectronica/ruler/issues"
|
|
},
|
|
"homepage": "https://ai.intellectronica.net/ruler",
|
|
"engines": {
|
|
"node": "^20.19.0 || ^22.12.0 || >=23"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"bin": {
|
|
"ruler": "dist/cli/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/iarna__toml": "^2.0.5",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^24.9.2",
|
|
"@types/yargs": "^17.0.34",
|
|
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
"@typescript-eslint/parser": "^8.46.2",
|
|
"eslint": "^9.38.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.6.2",
|
|
"ts-jest": "^29.4.5",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.46.2"
|
|
},
|
|
"dependencies": {
|
|
"@iarna/toml": "^2.2.5",
|
|
"js-yaml": "^4.1.0",
|
|
"yargs": "^18.0.0",
|
|
"zod": "^4.1.12"
|
|
}
|
|
}
|