@alexberriman/openai-designer-feedback
Version:
CLI tool that captures website screenshots using @alexberriman/screenshotter and provides professional web design/UX feedback via OpenAI's gpt-image-1 vision model. Focus on identifying critical issues and design errors.
118 lines (117 loc) • 3.41 kB
JSON
{
"name": "@alexberriman/openai-designer-feedback",
"version": "0.1.4",
"description": "CLI tool that captures website screenshots using @alexberriman/screenshotter and provides professional web design/UX feedback via OpenAI's gpt-image-1 vision model. Focus on identifying critical issues and design errors.",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"design-feedback": "bin/design-feedback"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "npm@10.0.0+",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"prepare": "husky",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check src/",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test",
"lint-staged": "lint-staged",
"prepublishOnly": "npm run check && npm run build",
"prepack": "npm run build",
"release": "npm version patch && npm publish --access public && git push --follow-tags",
"release:minor": "npm version minor && npm publish --access public && git push --follow-tags",
"release:major": "npm version major && npm publish --access public && git push --follow-tags"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexberriman/openai-designer-feedback.git"
},
"author": "Alex Berriman <alexberriman@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexberriman/openai-designer-feedback/issues"
},
"homepage": "https://github.com/alexberriman/openai-designer-feedback#readme",
"dependencies": {
"@alexberriman/screenshotter": "^0.1.1",
"@types/pino": "^7.0.4",
"chalk": "^5.4.1",
"commander": "^12.0.0",
"openai": "^4.100.0",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"playwright": "^1.52.0",
"ts-results": "^3.3.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/node": "^22.15.17",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-unicorn": "^59.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"tslib": "^2.8.1",
"tsup": "^8.5.0",
"tsx": "^4.7.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE",
"package.json"
],
"sideEffects": false,
"keywords": [
"web-design",
"design-feedback",
"ux-feedback",
"screenshot",
"cli",
"website",
"capture",
"viewport",
"playwright",
"openai",
"ai-assistant",
"vision-api",
"gpt",
"design-review",
"web-analysis",
"design-critique",
"website-feedback",
"ui-feedback",
"design-assistant",
"web-development",
"developer-tools"
]
}