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
119 lines (119 loc) · 3.66 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.66 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
{
"name": "rulesync",
"version": "5.2.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",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"rulesync": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/cli/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",
"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.25.1",
"@toon-format/toon": "2.1.0",
"@valibot/to-json-schema": "1.5.0",
"commander": "14.0.2",
"consola": "3.4.2",
"effect": "3.19.14",
"es-toolkit": "1.43.0",
"fastmcp": "3.26.7",
"gray-matter": "4.0.3",
"js-yaml": "4.1.1",
"jsonc-parser": "3.3.1",
"smol-toml": "1.6.0",
"sury": "11.0.0-alpha.4",
"zod": "4.3.4"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.1.76",
"@eslint/js": "9.39.2",
"@secretlint/secretlint-rule-preset-recommend": "11.2.5",
"@tsconfig/node24": "24.0.3",
"@types/js-yaml": "4.0.9",
"@types/node": "25.0.3",
"@typescript/native-preview": "7.0.0-dev.20260103.1",
"@vitest/coverage-v8": "4.0.16",
"cspell": "9.4.0",
"eslint": "9.39.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-type-assertion": "1.3.0",
"eslint-plugin-oxlint": "1.36.0",
"eslint-plugin-strict-dependencies": "1.3.29",
"eslint-plugin-zod-import": "0.3.0",
"knip": "5.79.0",
"lint-staged": "16.2.7",
"oxfmt": "0.23.0",
"oxlint": "1.36.0",
"secretlint": "11.2.5",
"simple-git-hooks": "2.13.1",
"sort-package-json": "3.6.0",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.51.0",
"vitest": "4.0.16"
},
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}