@lightpanda/browser
Version:
Lightpanda for Node.js
50 lines (49 loc) • 1.73 kB
JSON
{
"name": "@lightpanda/browser",
"version": "1.0.1",
"description": "Lightpanda for Node.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "tsup index.ts --target node22 --format cjs,esm --dts --watch",
"build:index": "tsup index.ts --target node22 --format cjs,esm --minify terser",
"build:decl": "yarn dlx --package=typescript tsc --emitDeclarationOnly --declaration",
"build:cli": "tsup cli/main.ts --target node22 --format cjs,esm --minify terser -d dist/cli",
"build:postinstall": "tsup scripts/postinstall.ts --target node22 --format cjs,esm --minify terser -d dist/scripts",
"build": "yarn build:index && yarn build:decl && yarn build:cli && yarn build:postinstall",
"postinstall": "node dist/scripts/postinstall.js || true",
"lint": "biome ci . --diagnostic-level=error",
"typecheck": "yarn dlx --package=typescript tsc --noEmit"
},
"bin": {
"lightpanda": "./dist/cli/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lightpanda-io/node-packages/tree/main/packages/browser"
},
"keywords": [
"lightpanda",
"browser",
"automation"
],
"author": "Nicolas Rigaudiere <nicolas@tonalogic.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lightpanda-io/node-packages/issues"
},
"homepage": "https://github.com/lightpanda-io/node-packages/tree/main#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "22.15.32",
"@types/yargs": "^17.0.33",
"terser": "^5.43.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"dependencies": {
"yargs": "^18.0.0"
}
}