smartbrowser/package.json

61 lines
1.5 KiB
JSON
Raw Normal View History

2016-09-19 18:00:19 +00:00
{
2023-07-10 00:42:14 +00:00
"name": "@push.rocks/smartbrowser",
2023-09-11 08:18:46 +00:00
"version": "2.0.6",
2024-04-14 15:21:37 +00:00
"description": "A simplified Puppeteer wrapper for easy automation and testing tasks.",
2020-06-01 20:19:25 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 13:57:16 +00:00
"type": "module",
2016-09-19 18:00:19 +00:00
"scripts": {
2020-06-01 20:19:25 +00:00
"test": "(tstest test/ --web)",
2023-09-11 08:18:45 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-09-19 18:00:19 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:11:51 +00:00
"url": "https://code.foss.global/push.rocks/smartbrowser.git"
2016-09-19 18:00:19 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartbrowser/issues"
},
2024-05-29 12:11:51 +00:00
"homepage": "https://code.foss.global/push.rocks/smartbrowser",
2016-09-19 18:00:19 +00:00
"dependencies": {
2023-09-11 08:18:45 +00:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartpdf": "^3.0.16",
"@push.rocks/smartpuppeteer": "^2.0.0",
"@push.rocks/smartunique": "^3.0.6"
2016-09-19 18:00:19 +00:00
},
"devDependencies": {
2023-09-11 08:18:45 +00:00
"@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.81",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.6.0"
2019-05-28 21:27:55 +00:00
},
2020-06-01 20:25:32 +00:00
"private": false,
2019-05-28 21:27:55 +00:00
"files": [
2020-06-01 20:19:25 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-05-28 21:27:55 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-04-29 14:52:28 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 15:21:37 +00:00
],
"keywords": [
"puppeteer",
"automation",
"testing",
"pdf generation",
"screenshot",
"web scraping",
"browser automation"
2019-05-28 21:27:55 +00:00
]
2024-04-14 15:21:37 +00:00
}