forked from intellectronica/ruler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.72 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@intellectronica/ruler",
"version": "0.3.16",
"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": ">=18"
},
"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"
}
}