File size: 1,310 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | {
"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"
}
}
|