Files
Imhotep/packages/imhotep-playwright/package.json
T
John Dvorak 70f528fbab chore: polish for FOL contract delivery (CHANGELOG, CLI guardrails, metadata)
- Update CHANGELOG.md for 1.1.0 (date, refactoring, repository fixes)
- Add overwrite guardrails to imhotep-cli init — skips existing files
- Add bugs/homepage/keywords metadata to 5 public packages
- Mark imhotep-bench and imhotep-fixtures as private packages
- Add selector field to SourceReference interface (core types)
- Remove 7  casts from check-all.ts (folAst.position, cardinality results)
- Generate package-lock.json for reproducible installs
2026-05-21 11:58:31 -07:00

58 lines
1.3 KiB
JSON

{
"name": "imhotep-playwright",
"version": "1.1.0",
"type": "module",
"license": "MIT",
"description": "Playwright integration with CDP extraction, runtime pooling, and property runners",
"repository": {
"type": "git",
"url": "https://gitea.com/anomalyco/imhotep.git"
},
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "tsc -p tsconfig.test.json && node --test dist/**/*.test.js",
"test:integration": "node --test dist/**/*.integration.test.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"peerDependencies": {
"@playwright/test": "^1.59.1",
"playwright": "^1.59.1"
},
"dependencies": {
"imhotep-cdp": "^1.0.0",
"imhotep-core": "^1.0.0",
"imhotep-dsl": "^1.0.0",
"imhotep-solver": "^1.0.0",
"imhotep-reporter": "^1.0.0"
},
"bugs": {
"url": "https://gitea.com/anomalyco/imhotep/issues"
},
"homepage": "https://docs.imhotep.dev",
"keywords": [
"testing",
"visual-testing",
"layout-testing",
"relational-testing",
"playwright",
"geometry",
"fol",
"first-order-logic",
"e2e",
"property-testing"
]
}