-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.25 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
{
"name": "wcag-ui",
"version": "0.1.0-alpha.0",
"description": "wcagUI Library",
"repository": "git@github.com:devdojo-it/wcag-ui.git",
"author": "DevDojo IT (https://devdojo.it), Exeen (https://exeen.it)",
"contributors": [
"Emiliano Pisu (https://github.com/pixu1980)",
"Massimo Artizzu (https://github.com/maxart2501)",
"Mirela Rosca (https://github.com/mirirosca)",
"Marco Pollacci (https://github.com/marcopollacci)",
"Valeria Salis (https://github.com/vallss)",
"Alessio Tortolini (https://github.com/alestormoody)",
"Christian Nastasi (https://github.com/cnastasi)",
"Salvatore Tropea (https://github.com/salvotropea96)",
"Andrea Giannantonio (https://github.com/JellyBellyDev)",
"Gabriele Falasca (https://github.com/gabrycaos)"
],
"license": "MIT",
"scripts": {
"commitlint": "commitlint --from-last-tag",
"clear:cache": "rm -rf .parcel-cache dist",
"clear": "pnpm run clear:cache && rm -rf node_modules pnpm-lock.yaml",
"reset": "pnpm run clear && pnpm install && pnpm approve-builds",
"prestart": "pnpm run clear:cache && pnpm run build:packages",
"start": "parcel ./src/index.html",
"build:packages": "pnpm -r -parallel run build",
"prebuild": "pnpm run clear:cache && pnpm run build:packages",
"build": "parcel build ./src/index.html --no-source-maps --public-url ./",
"watch:css": "pnpm -r --parallel watch:css",
"watch:js": "pnpm -r --parallel watch:js",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"component:add": "node --experimental-modules ./scripts/component-add.mjs",
"release:packages": "node --experimental-modules ./scripts/release.mjs"
},
"dependencies": {
"@wcag-ui/accordion": "workspace:^0.1.0-alpha.0",
"@wcag-ui/button": "workspace:^0.1.0-alpha.0",
"@wcag-ui/checkbox": "workspace:^0.1.0-alpha.0",
"@wcag-ui/core": "workspace:^0.1.0-alpha.0",
"@wcag-ui/details": "workspace:^0.1.0-alpha.0",
"@wcag-ui/dialog": "workspace:^0.1.0-alpha.0",
"@wcag-ui/dom": "workspace:^0.1.0-alpha.0",
"@wcag-ui/foundations": "workspace:^0.1.0-alpha.0",
"@wcag-ui/grid-system": "workspace:^0.1.0-alpha.0",
"@wcag-ui/iconography": "workspace:^0.1.0-alpha.0",
"@wcag-ui/input": "workspace:^0.1.0-alpha.0",
"@wcag-ui/radio": "workspace:^0.1.0-alpha.0",
"@wcag-ui/scroll-spy": "workspace:^0.1.0-alpha.0",
"@wcag-ui/select": "workspace:^0.1.0-alpha.0",
"@wcag-ui/switch": "workspace:^0.1.0-alpha.0",
"@wcag-ui/textarea": "workspace:^0.1.0-alpha.0",
"@wcag-ui/tooltip": "workspace:^0.1.0-alpha.0",
"@wcag-ui/typography": "workspace:^0.1.0-alpha.0",
"@wcag-ui/tree-view": "workspace:^0.1.0-alpha.0",
"highlight.js": "11.11.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.4",
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"esbuild": "0.25.12",
"generate-changelog": "1.8.0",
"husky": "9.1.7",
"jsdoc": "4.0.5",
"parcel": "2.16.1",
"posthtml": "0.16.7",
"posthtml-extend": "0.6.5",
"posthtml-highlight": "3.0.0",
"posthtml-include": "2.0.1",
"posthtml-markdownit": "3.1.2",
"prettier": "3.6.2",
"realfavicon": "0.4.18",
"svgo": "4.0.0"
},
"volta": {
"node": "22.17.1",
"pnpm": "10.13.1"
}
}