WitNote / npm /package.json
AUXteam's picture
Upload folder using huggingface_hub
6a7089a verified
{
"name": "pinchtab",
"version": "0.7.6",
"description": "Browser control API for AI agents",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"pinchtab": "bin/pinchtab"
},
"repository": "github:pinchtab/pinchtab",
"homepage": "https://github.com/pinchtab/pinchtab#readme",
"bugs": "https://github.com/pinchtab/pinchtab/issues",
"scripts": {
"lint": "eslint src tests scripts",
"format": "prettier --write src tests scripts",
"format:check": "prettier --check src tests scripts",
"build": "npm run lint && npm run format:check && tsc",
"test": "node --test 'dist/tests/**/*.test.js'",
"postinstall": "node scripts/postinstall.js",
"prepare": "npm run build"
},
"files": [
"dist/src",
"bin",
"scripts/postinstall.js",
"LICENSE"
],
"keywords": [
"browser",
"automation",
"api",
"agent",
"ai",
"headless",
"chromedp",
"stealth",
"ai-agent"
],
"author": "Mario <mario@giagolab.com>",
"license": "MIT",
"devDependencies": {
"typescript": "^5.3.0",
"@types/node": "^20.0.0",
"eslint": "^8.56.0",
"@typescript-eslint/parser": "^8.56.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"prettier": "^3.2.0"
},
"engines": {
"node": ">=16"
}
}