rulesync 0.69.0 → 0.71.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/README.md +152 -13
- package/dist/index.cjs +2256 -1258
- package/dist/index.js +2262 -1264
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rulesync",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.71.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",
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"bcheck:fix": "biome check --write .",
|
|
91
91
|
"build": "tsup src/cli/index.ts --format cjs,esm --dts --clean",
|
|
92
92
|
"check": "pnpm run bcheck && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
|
|
93
|
+
"cicheck": "pnpm run check && pnpm run test && pnpm run cspell && pnpm run secretlint",
|
|
93
94
|
"cspell": "cspell \"**/*\"",
|
|
94
95
|
"dev": "tsx src/cli/index.ts",
|
|
95
96
|
"eslint": "eslint . --max-warnings 0 --cache",
|
|
@@ -101,9 +102,10 @@
|
|
|
101
102
|
"oxlint:fix": "oxlint . --fix --max-warnings 0",
|
|
102
103
|
"secretlint": "secretlint --secretlintignore .gitignore \"**/*\"",
|
|
103
104
|
"sort": "sort-package-json",
|
|
104
|
-
"
|
|
105
|
-
"test
|
|
106
|
-
"test:
|
|
105
|
+
"task": "tsx scripts/run-tasks.ts",
|
|
106
|
+
"test": "vitest run --silent=true",
|
|
107
|
+
"test:coverage": "vitest run --coverage --silent=true",
|
|
108
|
+
"test:watch": "vitest --silent=true",
|
|
107
109
|
"typecheck": "tsgo --noEmit"
|
|
108
110
|
}
|
|
109
111
|
}
|