first
Showing
.dockerignore
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.docker.yml
0 → 100644
.gitlab-ci.upload.yml
0 → 100644
.gitlab-ci.yml
0 → 100644
.npmignore
0 → 100644
.prettierrc
0 → 100644
Dockerfile
0 → 100644
LICENSE
0 → 100644
build.js
0 → 100644
index.ts
0 → 100644
install-npm.sh
0 → 100755
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
| { | |||
| "name": "puppeteer-worker", | |||
| "description": "Puppeteer worker wrapped", | |||
| "version": "1.0.0", | |||
| "main": "dist/index.cjs", | |||
| "module": "dist/index.mjs", | |||
| "types": "dist/index.d.ts", | |||
| "exports": { | |||
| ".": { | |||
| "import": "./dist/index.mjs", | |||
| "require": "./dist/index.cjs", | |||
| "types": "./dist/index.d.ts" | |||
| } | |||
| }, | |||
| "scripts": { | |||
| "lint": "eslint --fix .", | |||
| "build": "node build.js", | |||
| "build:cjs": "node build.js cjs", | |||
| "build:esm": "node build.js esm", | |||
| "build:types": "node build.js types", | |||
| "clean": "node build.js clean", | |||
| "test": "jest --passWithNoTests --runInBand", | |||
| "start": "node dist/index.js" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "https://code.moenext.com/nanahira/puppeteer-worker.git" | |||
| }, | |||
| "author": "Nanahira <nanahira@momobako.com>", | |||
| "license": "MIT", | |||
| "keywords": [], | |||
| "bugs": { | |||
| "url": "https://code.moenext.com/nanahira/puppeteer-worker/issues" | |||
| }, | |||
| "homepage": "https://code.moenext.com/nanahira/puppeteer-worker", | |||
| "jest": { | |||
| "moduleFileExtensions": [ | |||
| "js", | |||
| "json", | |||
| "ts" | |||
| ], | |||
| "rootDir": "tests", | |||
| "testRegex": ".*\\.spec\\.ts$", | |||
| "transform": { | |||
| "^.+\\.(t|j)s$": "ts-jest" | |||
| }, | |||
| "collectCoverageFrom": [ | |||
| "**/*.(t|j)s" | |||
| ], | |||
| "coverageDirectory": "../coverage", | |||
| "testEnvironment": "node" | |||
| }, | |||
| "devDependencies": { | |||
| "@types/cookie": "0.6.0", | |||
| "@types/jest": "^30.0.0", | |||
| "@types/node": "^24.9.2", | |||
| "@typescript-eslint/eslint-plugin": "^6.21.0", | |||
| "@typescript-eslint/parser": "^6.21.0", | |||
| "esbuild": "^0.25.11", | |||
| "esbuild-register": "^3.6.0", | |||
| "eslint": "8.22.0", | |||
| "eslint-config-prettier": "^9.1.2", | |||
| "eslint-plugin-prettier": "^5.5.4", | |||
| "jest": "^30.2.0", | |||
| "prettier": "^3.6.2", | |||
| "rimraf": "^6.1.0", | |||
| "ts-jest": "^29.4.5", | |||
| "typescript": "^5.9.3" | |||
| }, | |||
| "dependencies": { | |||
| "better-lock": "^3.2.0", | |||
| "cookie": "0.6.0", | |||
| "puppeteer": "^24.27.0", | |||
| "puppeteer-extra": "^3.3.6", | |||
| "puppeteer-extra-plugin-stealth": "^2.11.2", | |||
| "puppeteer-finder": "^1.1.1" | |||
| } | |||
| } |
src/create-puppeteer.ts
0 → 100644
src/page-request-waiter.ts
0 → 100644
src/puppeteer-worker.ts
0 → 100644
src/utility/defer.ts
0 → 100644
tests/sample.spec.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment