shadscan-vue 0.0.0 → 0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0 (2026-07-25)
4
+
5
+
6
+ ### Features
7
+
8
+ * **cli:** add rule catalog, setup hook, and roast copy ([65824fe](https://github.com/vinayakkulkarni/shadscan-vue/commit/65824fe77175fd14e2e8fa8a84a006936ee0e4d2))
9
+ * **cli:** engine core with discovery, parsing, audit runtime ([1e99838](https://github.com/vinayakkulkarni/shadscan-vue/commit/1e998389b8e9b6415c146f7010384042ddec5d16))
10
+ * **rules:** 8 accessibility rules with fixture-based TDD suite ([c4d9bd5](https://github.com/vinayakkulkarni/shadscan-vue/commit/c4d9bd5848887481c4fca30094b96cf0bbc0490b))
11
+ * **rules:** 8 foundation rules with fixture-based TDD suite ([5bc6bae](https://github.com/vinayakkulkarni/shadscan-vue/commit/5bc6baed1da1baa5dfdc51ea6d82a55802d43c42))
12
+ * **rules:** 8 interaction rules with fixture-based TDD suite ([8c51912](https://github.com/vinayakkulkarni/shadscan-vue/commit/8c5191235a4ea50a65aa44d1dd2c5b1890d0dd91))
13
+ * **rules:** 9 production-polish rules with fixture-based TDD suite ([c21a390](https://github.com/vinayakkulkarni/shadscan-vue/commit/c21a39079e79eaeb169e752efca3044f0e9763c0))
14
+ * **rules:** audit dialog accessible names across reka-ui primitives ([cbeccc7](https://github.com/vinayakkulkarni/shadscan-vue/commit/cbeccc775b3b74e73c6886eca2e9d94632d09854))
15
+ * **rules:** complete forms category with 7 rules and TDD suite ([2183930](https://github.com/vinayakkulkarni/shadscan-vue/commit/21839301a7e9601f0c83afa990f7a3c6461b060e))
16
+ * **rules:** complete states category with 8 rules and TDD suite ([671a26f](https://github.com/vinayakkulkarni/shadscan-vue/commit/671a26f4b75dfd9efb312d08ee163d9cc46d3e05))
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **cli:** honour roast defaults and ship the package readme ([bb1c19e](https://github.com/vinayakkulkarni/shadscan-vue/commit/bb1c19e19dd417aa6e941c6612458022a0332e51))
22
+ * **rules:** do not fail alias resolution before configs are generated ([b04eea4](https://github.com/vinayakkulkarni/shadscan-vue/commit/b04eea4ea25b964320ac63f2ce733a6edc3f6229))
23
+ * **rules:** resolve shadcn aliases through project references ([04db057](https://github.com/vinayakkulkarni/shadscan-vue/commit/04db057614b4a68d6afa0b6fd648de5ab199c509))
24
+ * **test:** commit the generated Nuxt config used by alias fixtures ([de9723f](https://github.com/vinayakkulkarni/shadscan-vue/commit/de9723fa1b57d17231c8d8045a81b1c7ed683883))
25
+
26
+
27
+ ### Miscellaneous
28
+
29
+ * scaffold shadscan-vue monorepo ([7a3eb62](https://github.com/vinayakkulkarni/shadscan-vue/commit/7a3eb62dcfc74345bcb62d147536e90006132998))
30
+
31
+ ## Changelog
32
+
3
33
  All notable changes to this project are documented in this file.
4
34
 
5
35
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shadscan-vue",
3
- "version": "0.0.0",
3
+ "version": "0.1.0",
4
4
  "private": false,
5
5
  "description": "Audit shadcn-vue and shadcn-nuxt apps for missing UI fundamentals. Deterministic checks. Evidence. Agent-ready fixes. Vue port of shadscan.",
6
6
  "keywords": [
@@ -53,6 +53,13 @@
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
+ "scripts": {
57
+ "build": "vp pack",
58
+ "test": "vitest run",
59
+ "typecheck": "tsc -p tsconfig.json --noEmit",
60
+ "lint": "vp lint src",
61
+ "lint:fix": "vp lint src --fix"
62
+ },
56
63
  "dependencies": {
57
64
  "@vue/compiler-dom": "^3.5.22",
58
65
  "@vue/compiler-sfc": "^3.5.22",
@@ -72,12 +79,5 @@
72
79
  },
73
80
  "engines": {
74
81
  "node": ">=20.19.0"
75
- },
76
- "scripts": {
77
- "build": "vp pack",
78
- "test": "vitest run",
79
- "typecheck": "tsc -p tsconfig.json --noEmit",
80
- "lint": "vp lint src",
81
- "lint:fix": "vp lint src --fix"
82
82
  }
83
- }
83
+ }