@rickcedwhat/playwright-smart-table 5.2.0 → 5.3.0

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 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rickcedwhat/playwright-smart-table",
3
- "version": "5.2.0",
3
+ "version": "5.3.0",
4
4
  "description": "Production-ready table testing for Playwright with smart column-aware locators. Core library with plugin support for custom table implementations.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,6 +14,8 @@
14
14
  "scripts": {
15
15
  "generate-types": "node scripts/embed-types.mjs",
16
16
  "generate-docs": "node scripts/generate-readme.mjs",
17
+ "docs:dev": "vitepress dev docs",
18
+ "docs:build": "vitepress build docs",
17
19
  "build": "npm run generate-types && npm run generate-docs && tsc",
18
20
  "prepublishOnly": "npm run build",
19
21
  "test": "npx playwright test",
@@ -39,8 +41,10 @@
39
41
  "devDependencies": {
40
42
  "@playwright/test": "^1.50.0",
41
43
  "@types/node": "^20.0.0",
44
+ "husky": "^8.0.0",
42
45
  "ts-node": "^10.9.0",
43
46
  "typescript": "^5.0.0",
44
- "husky": "^8.0.0"
47
+ "vitepress": "^1.6.4",
48
+ "vue": "^3.5.27"
45
49
  }
46
50
  }