smartpuppeteer/package.json

57 lines
1.3 KiB
JSON
Raw Normal View History

2019-06-03 20:24:10 +00:00
{
2023-07-10 08:17:36 +00:00
"name": "@push.rocks/smartpuppeteer",
2024-04-12 11:13:10 +00:00
"version": "2.0.3",
2019-06-03 20:24:10 +00:00
"private": false,
2024-04-14 16:11:25 +00:00
"description": "Provides simplified access to Puppeteer for automation and testing purposes.",
2021-01-08 21:16:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 12:51:12 +00:00
"type": "module",
2019-06-03 20:24:10 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2022-03-24 12:51:12 +00:00
"test": "tstest test/",
"build": "tsbuild --web --allowimplicitany"
2019-06-03 20:24:10 +00:00
},
"devDependencies": {
2024-04-12 11:13:09 +00:00
"@git.zone/tsbuild": "^2.1.63",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.71",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.12.7"
2019-06-03 20:24:10 +00:00
},
2019-06-03 20:48:40 +00:00
"dependencies": {
2024-04-12 11:13:09 +00:00
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/smartshell": "^3.0.3",
"puppeteer": "^22.6.4",
2021-08-17 13:22:10 +00:00
"tree-kill": "^1.2.2"
2019-06-03 20:48:40 +00:00
},
2019-06-03 20:24:10 +00:00
"files": [
2019-11-15 22:41:39 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-01-08 21:16:25 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-15 22:41:39 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-06-03 20:24:10 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-01-08 21:16:25 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:11:25 +00:00
],
"keywords": [
"puppeteer",
"automation",
"browser automation",
"web scraping",
"testing",
"headless browsing",
"incognito browsing"
2024-05-29 12:15:38 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartpuppeteer",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartpuppeteer.git"
}
2024-04-14 16:11:25 +00:00
}