smartbrowser/package.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2016-09-19 20:00:19 +02:00
{
2023-07-10 02:42:14 +02:00
"name": "@push.rocks/smartbrowser",
2025-01-02 22:22:04 +01:00
"version": "2.0.7",
2024-04-14 17:21:37 +02: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 14:57:16 +01:00
"type": "module",
2016-09-19 20:00:19 +02:00
"scripts": {
2020-06-01 20:19:25 +00:00
"test": "(tstest test/ --web)",
2023-09-11 10:18:45 +02:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-09-19 20:00:19 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:11:51 +02:00
"url": "https://code.foss.global/push.rocks/smartbrowser.git"
2016-09-19 20:00:19 +02:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartbrowser/issues"
},
2024-05-29 14:11:51 +02:00
"homepage": "https://code.foss.global/push.rocks/smartbrowser",
2016-09-19 20:00:19 +02:00
"dependencies": {
2023-09-11 10:18:45 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartpdf": "^3.1.8",
2023-09-11 10:18:45 +02:00
"@push.rocks/smartpuppeteer": "^2.0.0",
"@push.rocks/smartunique": "^3.0.9"
2016-09-19 20:00:19 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.2.0",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.5.4",
"@types/node": "^22.10.4"
2019-05-28 23:27:55 +02:00
},
2020-06-01 20:25:32 +00:00
"private": false,
2019-05-28 23:27:55 +02:00
"files": [
2020-06-01 20:19:25 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-05-28 23:27:55 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2021-04-29 14:52:28 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 17:21:37 +02:00
],
"keywords": [
"puppeteer",
"automation",
"testing",
"pdf generation",
"screenshot",
"web scraping",
"browser automation"
2019-05-28 23:27:55 +02:00
]
2025-01-02 22:22:04 +01:00
}