@remit/web-client 0.0.3 → 0.0.5
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/package.json +6 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remit/web-client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Remit web client, published as composable primitives — the app shell, auth shells, and runtime config. A distributor imports what it composes and bundles it.",
|
|
6
6
|
"exports": {
|
|
@@ -30,24 +30,7 @@
|
|
|
30
30
|
"preview": "vite preview",
|
|
31
31
|
"test:typecheck": "npm run generate:routes && tsgo --noEmit",
|
|
32
32
|
"test:run": "node --import tsx --import ./test-support/register.mjs --test 'src/**/*.test.ts'",
|
|
33
|
-
"test": "npm run test:typecheck && npm run test:run"
|
|
34
|
-
"test:smoke": "npx playwright test --config playwright.smoke.config.ts",
|
|
35
|
-
"test:smoke:pg": "npx playwright test --config playwright.smoke.pg.config.ts",
|
|
36
|
-
"test:smoke:ui": "npx playwright test --config playwright.smoke.config.ts --ui",
|
|
37
|
-
"test:e2e": "npx playwright test --config playwright.e2e.config.ts",
|
|
38
|
-
"test:e2e:pg": "npx playwright test --config playwright.e2e.pg.config.ts",
|
|
39
|
-
"test:e2e:ui": "npx playwright test --config playwright.e2e.config.ts --ui",
|
|
40
|
-
"test:visual:fetch": "bash scripts/visual-baselines.sh fetch",
|
|
41
|
-
"test:visual:publish": "bash scripts/visual-baselines.sh publish",
|
|
42
|
-
"test:visual:status": "bash scripts/visual-baselines.sh status",
|
|
43
|
-
"test:visual": "npm run test:visual:fetch && npx playwright test --config playwright.visual.config.ts",
|
|
44
|
-
"test:visual:ui": "npm run test:visual:fetch && npx playwright test --config playwright.visual.config.ts --ui",
|
|
45
|
-
"test:visual:update": "npm run test:visual:fetch && npx playwright test --config playwright.visual.config.ts --update-snapshots=all && echo '\\nBaselines updated locally. Run: npm run test:visual:publish -w packages/web-client'",
|
|
46
|
-
"playwright:install": "npx playwright install chromium",
|
|
47
|
-
"parity:montage": "node --import tsx visual-regression/parity/montage.ts",
|
|
48
|
-
"parity:capture": "node --import tsx visual-regression/parity/capture-parity.ts",
|
|
49
|
-
"parity:capture:dev": "PARITY_TARGET=dev node --import tsx visual-regression/parity/capture-parity-dev.ts",
|
|
50
|
-
"parity:report": "node --import tsx visual-regression/parity/report.scaffold.ts"
|
|
33
|
+
"test": "npm run test:typecheck && npm run test:run"
|
|
51
34
|
},
|
|
52
35
|
"peerDependencies": {
|
|
53
36
|
"react": "^19",
|
|
@@ -56,7 +39,8 @@
|
|
|
56
39
|
"@vitejs/plugin-react": "^4",
|
|
57
40
|
"@tailwindcss/vite": "^4",
|
|
58
41
|
"tailwindcss": "^4",
|
|
59
|
-
"@tanstack/router-plugin": "^1"
|
|
42
|
+
"@tanstack/router-plugin": "^1",
|
|
43
|
+
"@types/react-dom": "^19"
|
|
60
44
|
},
|
|
61
45
|
"peerDependenciesMeta": {
|
|
62
46
|
"vite": {
|
|
@@ -106,7 +90,8 @@
|
|
|
106
90
|
"react-resizable-panels": "^2.1.9",
|
|
107
91
|
"tailwind-merge": "^2",
|
|
108
92
|
"vaul": "^1.1.2",
|
|
109
|
-
"zod": "^3"
|
|
93
|
+
"zod": "^3",
|
|
94
|
+
"@types/dompurify": "*"
|
|
110
95
|
},
|
|
111
96
|
"devDependencies": {
|
|
112
97
|
"@aws-sdk/client-dynamodb": "*",
|
|
@@ -121,9 +106,7 @@
|
|
|
121
106
|
"@tailwindcss/vite": "^4",
|
|
122
107
|
"@tanstack/router-generator": "^1",
|
|
123
108
|
"@tanstack/router-plugin": "^1",
|
|
124
|
-
"@types/dompurify": "*",
|
|
125
109
|
"@types/pngjs": "^6.0.5",
|
|
126
|
-
"@types/react-dom": "^19",
|
|
127
110
|
"@vitejs/plugin-react": "^4",
|
|
128
111
|
"electrodb": "*",
|
|
129
112
|
"esbuild": "*",
|