@semantest/chrome-extension
Version:
Browser extension for ChatGPT-buddy - AI automation extension built on Web-Buddy framework
54 lines • 1.52 kB
JSON
{
"name": "@semantest/chrome-extension",
"version": "2.0.0",
"description": "Browser extension for ChatGPT-buddy - AI automation extension built on Web-Buddy framework",
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "cp manifest.json build/ && cp -r assets build/ && cp src/*.html build/ 2>/dev/null || true",
"clean": "rimraf build && mkdir -p build",
"dev": "npm run build && npm run watch",
"watch": "tsc --watch",
"test:watch": "jest --watch",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"chatgpt",
"ai-automation",
"browser-extension",
"web-buddy",
"training-system",
"event-driven",
"intelligent-automation"
],
"author": "rydnr",
"license": "GPL-3.0",
"dependencies": {
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/ws": "^8.5.10",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"rimraf": "^5.0.1",
"typescript": "^5.5.3"
},
"manifest": {
"host_permissions": [
"<all_urls>"
]
},
"repository": {
"type": "git",
"url": "https://github.com/semantest/extension.chrome.git",
"directory": "extension"
},
"bugs": {
"url": "https://github.com/semantest/extension.chrome/issues"
},
"homepage": "https://github.com/semantest/extension.chrome"
}