-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "rule-composer",
"version": "0.3.0",
"description": "Compose agent rules across coding tools.",
"keywords": [
"cursor",
"rules",
"agent",
"compose",
"decompose",
"sync",
"coding-tools",
"mdc",
"ai",
"claude",
"cline",
"zed",
"windsurf",
"copilot"
],
"homepage": "https://github.com/mia-cx/rule-composer#readme",
"repository": {
"type": "git",
"url": "https://github.com/mia-cx/rule-composer.git"
},
"bugs": {
"url": "https://github.com/mia-cx/rule-composer/issues"
},
"author": {
"name": "mia-riezebos",
"email": "mia@mia.cx",
"url": "https://github.com/mia-riezebos"
},
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"rule-composer": "./dist/index.js"
},
"files": [
"dist",
"rules",
"skills",
"agents",
"commands",
"coding-tools",
"scripts/compose/prompt.md",
"scripts/decompose/prompt.md"
],
"scripts": {
"dev": "tsx scripts/index.ts",
"compose": "tsx scripts/index.ts compose",
"decompose": "tsx scripts/index.ts decompose",
"sync": "tsx scripts/index.ts sync",
"build": "tsup",
"prepack": "pnpm build && pnpm build-variants",
"build-variants": "tsx scripts/compose/variants.ts",
"clear-variants": "tsx scripts/compose/clear-variants.ts",
"format": "prettier --write .",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"generate-fixtures": "tsx scripts/shared/__tests__/generate-fixtures.ts"
},
"dependencies": {
"@clack/core": "^0.4.0",
"@clack/prompts": "^0.9.0",
"better-sqlite3": "^12.6.2",
"gpt-tokenizer": "^3.4.0",
"gray-matter": "^4.0.3",
"picocolors": "^1.1.0",
"prettier": "^3.8.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@eslint/markdown": "^7.5.1",
"@types/node": "^22.0.0",
"eslint": "^10.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0",
"vitest": "^3.0.0"
}
}