-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.23 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 4.23 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
142
{
"name": "rulesync",
"version": "8.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 preview 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.27.1",
"@octokit/request-error": "7.1.0",
"@octokit/rest": "22.0.1",
"@toon-format/toon": "2.1.0",
"@valibot/to-json-schema": "1.6.0",
"commander": "14.0.3",
"effect": "3.20.0",
"es-toolkit": "1.45.1",
"fastmcp": "3.34.0",
"globby": "16.1.1",
"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.79",
"@eslint/js": "9.39.4",
"@opencode-ai/sdk": "1.2.27",
"@openrouter/sdk": "0.9.11",
"@secretlint/secretlint-rule-preset-recommend": "11.3.1",
"@tsconfig/node24": "24.0.4",
"@types/js-yaml": "4.0.9",
"@types/node": "25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260318.1",
"@vitest/coverage-v8": "4.1.0",
"cspell": "9.7.0",
"eslint": "9.39.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-type-assertion": "1.3.0",
"eslint-plugin-oxlint": "1.56.0",
"eslint-plugin-strict-dependencies": "1.3.32",
"eslint-plugin-zod-import": "0.3.0",
"knip": "5.88.0",
"lint-staged": "16.4.0",
"oxfmt": "0.41.0",
"oxlint": "1.56.0",
"repomix": "1.12.0",
"resend": "6.9.4",
"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.57.1",
"vite": "7.3.1",
"vitepress": "1.6.4",
"vitest": "4.1.0"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10"
},
"publishConfig": {
"access": "public"
}
}