rulesync 7.30.0 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  checkRulesyncDirExists,
7
7
  generate,
8
8
  importFromTool
9
- } from "./chunk-IGW5DFPU.js";
9
+ } from "./chunk-FLZZ3LEK.js";
10
10
 
11
11
  // src/index.ts
12
12
  async function generate2(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rulesync",
3
- "version": "7.30.0",
3
+ "version": "8.1.0",
4
4
  "description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
5
5
  "keywords": [
6
6
  "ai",
@@ -93,9 +93,9 @@
93
93
  "simple-git-hooks": "2.13.1",
94
94
  "sort-package-json": "3.6.1",
95
95
  "tsup": "8.5.1",
96
- "tsx": "4.21.0",
97
96
  "typescript": "5.9.3",
98
97
  "typescript-eslint": "8.57.1",
98
+ "vite": "7.3.1",
99
99
  "vitepress": "1.6.4",
100
100
  "vitest": "4.1.0"
101
101
  },
@@ -113,7 +113,7 @@
113
113
  "cicheck:code": "pnpm run check && pnpm run test",
114
114
  "cicheck:content": "pnpm run cspell && pnpm run secretlint",
115
115
  "cspell": "cspell --no-progress --gitignore .",
116
- "dev": "tsx src/cli/index.ts",
116
+ "dev": "node --experimental-transform-types --experimental-loader ./scripts/strip-types-loader.mjs src/cli/index.ts",
117
117
  "docs:build": "vitepress build docs",
118
118
  "docs:dev": "vitepress dev docs",
119
119
  "docs:preview": "vitepress preview docs",
@@ -123,13 +123,13 @@
123
123
  "fmt": "oxfmt .",
124
124
  "fmt:check": "oxfmt --check .",
125
125
  "generate": "pnpm run dev generate",
126
- "generate:schema": "tsx scripts/generate-json-schema.ts",
126
+ "generate:schema": "node --experimental-transform-types --experimental-loader ./scripts/strip-types-loader.mjs scripts/generate-json-schema.ts",
127
127
  "knip": "knip",
128
128
  "oxlint": "oxlint . --max-warnings 0",
129
129
  "oxlint:fix": "oxlint . --fix --max-warnings 0",
130
130
  "secretlint": "secretlint --secretlintignore .gitignore \"**/*\"",
131
131
  "sort": "sort-package-json",
132
- "task": "tsx scripts/run-tasks.ts",
132
+ "task": "node --experimental-transform-types --experimental-loader ./scripts/strip-types-loader.mjs scripts/run-tasks.ts",
133
133
  "test": "vitest run --silent=true",
134
134
  "test:coverage": "vitest run --coverage --silent=true",
135
135
  "test:e2e": "vitest run --config vitest.e2e.config.ts --silent=false",