-
-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.23 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 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
{
"name": "rulesync",
"version": "15.0.1",
"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": "tsdown",
"check": "pnpm run fmt:check && pnpm run oxlint && pnpm run typecheck",
"check:gitignore": "pnpm run dev gitignore && git diff --exit-code .gitignore .gitattributes",
"check:supported-tools": "tsx scripts/generate-supported-tools-tables.ts && git diff --exit-code README.md docs/reference/supported-tools.md",
"check:sync-skill-docs": "tsx scripts/check-skill-docs-sync.ts",
"cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
"cicheck:code": "pnpm run check && pnpm run test",
"cicheck:content": "pnpm run check:sync-skill-docs && pnpm run check:gitignore && pnpm run check:supported-tools && 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",
"fix": "pnpm run fmt && pnpm run oxlint:fix",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"generate": "pnpm run dev generate",
"generate:schema": "tsx scripts/generate-json-schema.ts",
"generate:tables": "tsx scripts/generate-supported-tools-tables.ts",
"knip": "knip",
"oxlint": "oxlint . --max-warnings 0",
"oxlint:fix": "oxlint . --fix --max-warnings 0",
"pr-continuation": "tsx scripts/pr-continuation.ts",
"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.29.0",
"@octokit/request-error": "7.1.0",
"@octokit/rest": "22.0.1",
"@toon-format/toon": "4.0.0",
"@valibot/to-json-schema": "1.7.1",
"commander": "15.0.0",
"effect": "3.22.0",
"es-toolkit": "1.49.0",
"fastmcp": "4.8.0",
"globby": "16.2.2",
"gray-matter": "4.0.3",
"js-yaml": "5.2.1",
"jsonc-parser": "3.3.1",
"smol-toml": "1.7.0",
"sury": "10.0.4",
"zod": "4.4.3"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.218",
"@openrouter/sdk": "1.0.12",
"@secretlint/secretlint-rule-preset-recommend": "13.0.4",
"@tsconfig/node24": "24.0.4",
"@types/node": "26.1.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@vitest/coverage-v8": "4.1.10",
"cspell": "10.0.1",
"knip": "6.29.0",
"lint-staged": "17.1.1",
"oxfmt": "0.60.0",
"oxlint": "1.75.0",
"repomix": "1.17.0",
"resend": "6.18.0",
"secretlint": "13.0.4",
"simple-git": "3.36.0",
"simple-git-hooks": "2.13.1",
"sort-package-json": "4.0.0",
"tsdown": "0.22.13",
"tsx": "4.23.1",
"typescript": "7.0.2",
"vite": "8.1.5",
"vitepress": "1.6.4",
"vitest": "4.1.10"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10"
},
"publishConfig": {
"access": "public"
}
}