41 lines
882 B
JSON
41 lines
882 B
JSON
{
|
|
"name": "imhotep-playwright",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.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"
|
|
}
|
|
}
|