-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.11 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.11 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
{
"name": "@nuxt/a11y",
"packageManager": "pnpm@10.33.0",
"version": "1.0.0-alpha.1",
"description": "Nuxt module to provide accessibility hinting and utilities.",
"repository": "nuxt/a11y",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && npm run client:build",
"client:build": "nuxt generate client",
"client:dev": "nuxt dev client --port 3030",
"dev": "npm run play:dev",
"prepack": "pnpm run build",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare client && nuxt prepare playground",
"play:dev": "nuxt dev playground",
"play:prod": "npm run build && nuxt dev playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc -b --noEmit && cd ../client && vue-tsc -b --noEmit",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/devtools-kit": "^3.2.4",
"@nuxt/kit": "^4.4.2",
"axe-core": "^4.11.3",
"linkedom": "^0.18.12",
"sirv": "^3.0.2"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.20",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "1.15.2",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.4.2",
"@nuxt/test-utils": "4.0.2",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.4",
"birpc": "4.0.0",
"changelogen": "0.6.2",
"eslint": "10.2.1",
"jsdom": "^29.0.2",
"nuxt": "4.4.2",
"pkg-pr-new": "0.0.66",
"playwright-core": "1.59.1",
"typescript": "~6.0.3",
"vite": "8.0.9",
"vitest": "4.1.4",
"vue-tsc": "3.2.7"
},
"resolutions": {
"@nuxt/a11y": "workspace:*"
}
}