-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 6.94 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 6.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "proyecto-viviana-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo for Proyecto Viviana SolidJS libraries",
"type": "module",
"scripts": {
"build": "vp run typecheck && vp run build:stately && vp run build:solidaria && vp run build:components && vp run build:solid-spectrum",
"build:stately": "vp run --filter @proyecto-viviana/solid-stately build",
"build:solidaria": "vp run --filter @proyecto-viviana/solidaria build",
"build:components": "vp run --filter @proyecto-viviana/solidaria-components build",
"build:solid-spectrum": "vp run --filter @proyecto-viviana/solid-spectrum build",
"build:web": "vp run --filter @proyecto-viviana/web build",
"dev": "vp run --filter @proyecto-viviana/web dev",
"start": "vp run --filter @proyecto-viviana/web start",
"deploy": "vp run --filter @proyecto-viviana/web deploy",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"fmt": "vp fmt . --write",
"fmt:check": "vp fmt . --check",
"check": "vp check && vp run typecheck",
"check:fix": "vp check --fix && vp run typecheck",
"comparison:install": "vp install --filter @proyecto-viviana/comparison",
"comparison:dev": "vp run --filter @proyecto-viviana/comparison dev",
"comparison:build": "vp run --filter @proyecto-viviana/comparison build",
"comparison:preview": "vp run --filter @proyecto-viviana/comparison preview",
"comparison:report:gaps": "vp run --filter @proyecto-viviana/comparison report:gaps",
"comparison:report:exports": "vp run --filter @proyecto-viviana/comparison report:exports",
"comparison:report:parity": "vp run --filter @proyecto-viviana/comparison report:parity",
"comparison:report:parity:strict": "vp run --filter @proyecto-viviana/comparison report:parity:strict",
"comparison:test:button": "vp run --filter @proyecto-viviana/comparison test:button",
"comparison:test:buttons": "vp run --filter @proyecto-viviana/comparison test:buttons",
"comparison:test:catalogue": "vp run --filter @proyecto-viviana/comparison test:catalogue",
"comparison:test:calendar": "vp run --filter @proyecto-viviana/comparison test:calendar",
"comparison:test:contract": "vp run --filter @proyecto-viviana/comparison test:contract",
"comparison:test:default": "vp run --filter @proyecto-viviana/comparison test:default",
"comparison:test:pair": "vp run --filter @proyecto-viviana/comparison test:pair",
"comparison:test:theme": "vp run --filter @proyecto-viviana/comparison test:theme",
"comparison:test:datefield": "vp run --filter @proyecto-viviana/comparison test:datefield",
"comparison:test:timefield": "vp run --filter @proyecto-viviana/comparison test:timefield",
"comparison:test:datepicker": "vp run --filter @proyecto-viviana/comparison test:datepicker",
"comparison:test:dialog": "vp run --filter @proyecto-viviana/comparison test:dialog",
"comparison:test:rangecalendar": "vp run --filter @proyecto-viviana/comparison test:rangecalendar",
"comparison:typecheck": "vp run --filter @proyecto-viviana/comparison typecheck",
"comparison:types": "vp run --filter @proyecto-viviana/comparison types",
"comparison:dev:worker": "vp run --filter @proyecto-viviana/comparison dev:worker",
"comparison:deploy": "vp run --filter @proyecto-viviana/comparison deploy",
"comparison:deploy:dry-run": "vp run --filter @proyecto-viviana/comparison deploy:dry-run",
"test": "vp test packages",
"test:run": "vp test run packages",
"test:watch": "vp test packages",
"test:e2e": "vp exec --filter @proyecto-viviana/web -- playwright test",
"a11y:axe:aa": "RUN_AXE=1 vp exec --filter @proyecto-viviana/web -- playwright test e2e/playground-axe.spec.ts -g \"WCAG 2.2 AA\" --reporter=line",
"a11y:axe:playground": "RUN_AXE=1 AXE_INCLUDE_CONTRAST=1 vp exec --filter @proyecto-viviana/web -- playwright test e2e/playground-axe.spec.ts --reporter=line",
"a11y:smoke": "vp exec --filter @proyecto-viviana/web -- playwright test e2e/docs-menu.spec.ts e2e/playground-components.spec.ts e2e/calendar-regression.spec.ts --reporter=line",
"a11y:check": "vp run a11y:axe:aa && vp run a11y:smoke",
"a11y:full": "vp run a11y:axe:playground && vp run a11y:smoke",
"a11y:ci": "vp run a11y:check",
"typecheck": "vp exec tsc --noEmit -p tsconfig.typecheck.json",
"typecheck:web": "vp run build && vp exec tsc -p apps/web/tsconfig.json --noEmit",
"typecheck:all": "vp run typecheck && vp run typecheck:web",
"guard:docs-routes": "vp exec tsx scripts/check-doc-routes.ts",
"guard:rac-parity": "vp exec tsx scripts/check-rac-parity.ts",
"guard:rac-export-gap": "vp exec tsx scripts/check-rac-export-gap.ts",
"guard:dnd-keyboard-parity": "vp exec tsx scripts/check-dnd-keyboard-parity.ts",
"guard:virtualizer-keyboard-parity": "vp exec tsx scripts/check-virtualizer-keyboard-parity.ts",
"bench:bundle": "vp exec tsx benchmarks/bundle-size/analyze.ts",
"bench:runtime": "vp test run benchmarks/runtime",
"bench:vitals": "vp exec --filter benchmarks-web-vitals -- playwright test",
"bench:all": "vp run bench:bundle && vp run bench:runtime && vp run bench:vitals",
"changeset": "vp exec changeset",
"changeset:status": "vp exec changeset status --since=origin/main",
"changeset:version": "vp exec changeset version",
"changeset:publish": "vp run build && vp exec changeset publish",
"ci:changesets": "vp exec tsx scripts/check-changeset-required.mjs && vp run changeset:status",
"ci:release-readiness": "vp run build && vp run test:run",
"ci:a11y": "vp run a11y:check",
"pr:check:fast": "vp run ci:changesets && vp run ci:release-readiness",
"pr:check": "vp run pr:check:fast && vp run ci:a11y",
"release:prepare": "vp run changeset:version && vp run ci:release-readiness",
"release:npm": "vp run changeset:publish",
"release:publish": "vp run release:npm",
"release": "vp run release:prepare && vp run release:publish",
"release:local": "vp run release"
},
"dependencies": {
"brotli-size": "^4.0.0",
"gzip-size": "^7.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@tsdown/css": "^0.21.10",
"@types/node": "^25.6.0",
"axe-core": "^4.11.4",
"esbuild-plugin-solid": "^0.6.0",
"jsdom": "^29.1.1",
"rimraf": "^6.1.3",
"solid-js": "^1.9.12",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"unplugin-parcel-macros": "0.2.0",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.20",
"vite-plugin-solid": "^2.11.12",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.20",
"wrangler": "^4.86.0"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.20",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.20"
}
}
}