-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.52 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
{
"name": "@devframes/plugin-a11y",
"type": "module",
"version": "0.7.15",
"description": "Devframe a11y inspector — runs axe-core against the host app, surfaces the violations through a Solid panel, and highlights the offending element in the page on hover. Works in dev (WebSocket) and static build modes.",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/devframes/devframe#readme",
"repository": {
"directory": "plugins/a11y",
"type": "git",
"url": "git+https://github.com/devframes/devframe.git"
},
"bugs": "https://github.com/devframes/devframe/issues",
"keywords": [
"devframe",
"devframe-plugin",
"devtools",
"a11y",
"accessibility",
"axe-core"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./client": "./dist/client/index.mjs",
"./cli": "./dist/cli.mjs",
"./node": "./dist/node/index.mjs",
"./vite": "./dist/vite.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"bin": {
"devframes_plugin_a11y": "./bin.mjs"
},
"files": [
"bin.mjs",
"dist"
],
"scripts": {
"build": "tsdown && vite build --config src/spa/vite.config.ts && vite build --config src/inject/vite.config.ts",
"build:spa": "vite build --config src/spa/vite.config.ts",
"build:inject": "vite build --config src/inject/vite.config.ts",
"watch": "tsdown --watch",
"dev": "node bin.mjs",
"storybook": "storybook dev -p 6015",
"build-storybook": "storybook build",
"cli:build": "node bin.mjs build --out-dir dist/static",
"demo": "node demo/server.mjs",
"demo:build": "node demo/server.mjs build",
"typecheck": "tsc --noEmit",
"prepack": "pnpm run build",
"test": "vitest run"
},
"peerDependencies": {
"devframe": "workspace:*",
"vite": "^8.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"dependencies": {
"axe-core": "catalog:frontend",
"cac": "catalog:deps",
"solid-js": "catalog:frontend"
},
"devDependencies": {
"@antfu/design": "catalog:frontend",
"colorjs.io": "catalog:frontend",
"devframe": "workspace:*",
"get-port-please": "catalog:deps",
"h3": "catalog:deps",
"storybook": "catalog:storybook",
"storybook-solidjs-vite": "catalog:storybook",
"tsdown": "catalog:build",
"unocss": "catalog:frontend",
"vite": "catalog:build",
"vite-plugin-solid": "catalog:build",
"vitest": "catalog:testing",
"ws": "catalog:deps"
}
}