apigrip 0.6.2 → 0.6.4

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.
Files changed (1) hide show
  1. package/package.json +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apigrip",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "A spec-first, read-only OpenAPI client for developers",
5
5
  "type": "module",
6
6
  "main": "./lib/index.cjs",
@@ -30,6 +30,9 @@
30
30
  "build": "vite build --config client/vite.config.js",
31
31
  "test": "node --test $(find test -name '*.test.js')",
32
32
  "test:client": "vitest run --config client/vitest.config.js",
33
+ "test:e2e": "npx playwright test --config e2e/playwright.config.js",
34
+ "test:e2e:headed": "npx playwright test --config e2e/playwright.config.js --headed",
35
+ "test:e2e:ui": "npx playwright test --config e2e/playwright.config.js --ui",
33
36
  "prepare": "test -d client/src && npm run build || true",
34
37
  "prepublishOnly": "npm run build"
35
38
  },
@@ -61,10 +64,12 @@
61
64
  "yargs": "^18.0.0"
62
65
  },
63
66
  "devDependencies": {
67
+ "@playwright/test": "^1.58.2",
64
68
  "@testing-library/jest-dom": "^6.9.1",
65
69
  "@testing-library/react": "^16.3.2",
66
70
  "@testing-library/user-event": "^14.6.1",
67
71
  "@vitejs/plugin-react": "^5.1.4",
72
+ "@vitest/coverage-v8": "^4.0.18",
68
73
  "jsdom": "^28.1.0",
69
74
  "react": "^19.2.4",
70
75
  "react-dom": "^19.2.4",