shadscan-vue 0.0.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 +10 -0
- package/LICENSE.md +21 -0
- package/README.md +110 -0
- package/THIRD_PARTY_NOTICES.md +33 -0
- package/bin/shadscan-vue.mjs +5 -0
- package/dist/index.d.ts +309 -0
- package/dist/index.js +4043 -0
- package/dist/index.js.map +1 -0
- package/package.json +83 -0
package/package.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shadscan-vue",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Audit shadcn-vue and shadcn-nuxt apps for missing UI fundamentals. Deterministic checks. Evidence. Agent-ready fixes. Vue port of shadscan.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"a11y",
|
|
8
|
+
"accessibility",
|
|
9
|
+
"audit",
|
|
10
|
+
"cli",
|
|
11
|
+
"nuxt",
|
|
12
|
+
"reka-ui",
|
|
13
|
+
"shadcn-nuxt",
|
|
14
|
+
"shadcn-vue",
|
|
15
|
+
"ui-fundamentals",
|
|
16
|
+
"vue"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://github.com/vinayakkulkarni/shadscan-vue#readme",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/vinayakkulkarni/shadscan-vue/issues"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "Vinayak Kulkarni",
|
|
25
|
+
"email": "inbox.vinayak@gmail.com",
|
|
26
|
+
"url": "https://vinayakkulkarni.dev"
|
|
27
|
+
},
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/vinayakkulkarni/shadscan-vue.git",
|
|
31
|
+
"directory": "packages/cli"
|
|
32
|
+
},
|
|
33
|
+
"bin": {
|
|
34
|
+
"shadscan-vue": "./bin/shadscan-vue.mjs"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"bin",
|
|
39
|
+
"LICENSE.md",
|
|
40
|
+
"THIRD_PARTY_NOTICES.md",
|
|
41
|
+
"CHANGELOG.md",
|
|
42
|
+
"README.md"
|
|
43
|
+
],
|
|
44
|
+
"type": "module",
|
|
45
|
+
"main": "./dist/index.js",
|
|
46
|
+
"types": "./dist/index.d.ts",
|
|
47
|
+
"exports": {
|
|
48
|
+
".": {
|
|
49
|
+
"types": "./dist/index.d.ts",
|
|
50
|
+
"import": "./dist/index.js"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"publishConfig": {
|
|
54
|
+
"access": "public"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@vue/compiler-dom": "^3.5.22",
|
|
58
|
+
"@vue/compiler-sfc": "^3.5.22",
|
|
59
|
+
"cac": "^7.0.0",
|
|
60
|
+
"cross-spawn": "^7.0.6",
|
|
61
|
+
"jsonc-parser": "^3.3.1",
|
|
62
|
+
"picocolors": "^1.1.1",
|
|
63
|
+
"tinyglobby": "^0.2.17",
|
|
64
|
+
"typescript": "^6.0.3",
|
|
65
|
+
"zod": "^4.4.3"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@types/cross-spawn": "^6.0.6",
|
|
69
|
+
"@types/node": "^26.1.1",
|
|
70
|
+
"execa": "^9.6.1",
|
|
71
|
+
"vitest": "^4.1.10"
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"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
|
+
}
|
|
83
|
+
}
|