forked from dyoshikawa/rulesync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.22 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 4.22 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "rulesync",
"version": "7.3.0",
"description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
"keywords": [
"ai",
"cli",
"cline",
"configuration",
"copilot",
"cursor",
"development",
"rules"
],
"homepage": "https://github.com/dyoshikawa/rulesync#readme",
"bugs": {
"url": "https://github.com/dyoshikawa/rulesync/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dyoshikawa/rulesync.git"
},
"license": "MIT",
"author": "dyoshikawa",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"rulesync": "dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/cli/index.ts src/index.ts --format cjs,esm --dts --clean",
"check": "pnpm run fmt:check && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
"cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
"cicheck:code": "pnpm run check && pnpm run test",
"cicheck:content": "pnpm run cspell && pnpm run secretlint",
"cspell": "cspell --no-progress --gitignore .",
"dev": "tsx src/cli/index.ts",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress serve docs",
"eslint": "eslint . --max-warnings 0 --cache",
"eslint:fix": "eslint . --fix --max-warnings 0 --cache",
"fix": "pnpm run fmt && pnpm run oxlint:fix && pnpm run eslint:fix",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"generate": "pnpm run dev generate",
"generate:schema": "tsx scripts/generate-json-schema.ts",
"knip": "knip",
"oxlint": "oxlint . --max-warnings 0",
"oxlint:fix": "oxlint . --fix --max-warnings 0",
"prepare": "simple-git-hooks && pnpm generate",
"prepublishOnly": "pnpm build",
"secretlint": "secretlint --secretlintignore .gitignore \"**/*\"",
"sort": "sort-package-json",
"task": "tsx scripts/run-tasks.ts",
"test": "vitest run --silent=true",
"test:coverage": "vitest run --coverage --silent=true",
"test:e2e": "vitest run --config vitest.e2e.config.ts --silent=false",
"test:watch": "vitest --silent=true",
"typecheck": "tsgo --noEmit"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.26.0",
"@octokit/request-error": "7.1.0",
"@octokit/rest": "22.0.1",
"@toon-format/toon": "2.1.0",
"@valibot/to-json-schema": "1.5.0",
"commander": "14.0.3",
"consola": "3.4.2",
"effect": "3.19.16",
"es-toolkit": "1.44.0",
"fastmcp": "3.32.0",
"globby": "16.1.0",
"gray-matter": "4.0.3",
"js-yaml": "4.1.1",
"jsonc-parser": "3.3.1",
"smol-toml": "1.6.0",
"sury": "10.0.4",
"zod": "4.3.6"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.40",
"@eslint/js": "9.39.2",
"@openrouter/sdk": "0.8.0",
"@secretlint/secretlint-rule-preset-recommend": "11.3.1",
"@tsconfig/node24": "24.0.4",
"@types/js-yaml": "4.0.9",
"@types/node": "25.2.3",
"@typescript/native-preview": "7.0.0-dev.20260211.1",
"@vitest/coverage-v8": "4.0.18",
"cspell": "9.6.4",
"eslint": "9.39.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-type-assertion": "1.3.0",
"eslint-plugin-oxlint": "1.46.0",
"eslint-plugin-strict-dependencies": "1.3.30",
"eslint-plugin-zod-import": "0.3.0",
"knip": "5.83.1",
"lint-staged": "16.2.7",
"oxfmt": "0.31.0",
"oxlint": "1.46.0",
"repomix": "1.11.1",
"resend": "6.9.2",
"secretlint": "11.3.1",
"simple-git-hooks": "2.13.1",
"sort-package-json": "3.6.1",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.55.0",
"vitepress": "1.6.4",
"vitest": "4.0.18"
},
"packageManager": "pnpm@10.28.1",
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}