Files
Sawyer Hood 207ceea8d9 release: v0.2.1 (#58)
* docs: note Windows is not currently supported

* chore: align marketplace version with package.json

* docs: rewrite CHANGELOG with 0.2.0 as initial CLI release

* docs: remove zero startup cost from README features

* feat: add install-skill interactive command

* chore: add rustfmt and prettier with CI checks

* docs: simplify changelog

* docs: add _snapshotForAI to help output

* docs: expand LLM usage guide in help output

* feat: add --timeout flag for script execution

* feat: add snapshot helper for LLM-friendly page inspection

* docs: document snapshotForAI, remove custom snapshot helper

* docs: add approach guidance to LLM help

* release: v0.2.1
2026-03-19 15:49:16 -07:00

30 lines
901 B
JSON

{
"name": "dev-browser-daemon",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.1",
"scripts": {
"build": "tsc",
"bundle": "esbuild src/daemon.ts --bundle --platform=node --format=esm --outfile=dist/daemon.bundle.mjs --external:playwright --external:quickjs-emscripten --external:@jitl/*",
"bundle:sandbox-client": "tsx scripts/bundle-sandbox-client.ts",
"dev": "tsx src/daemon.ts",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,json,md}\""
},
"dependencies": {
"playwright": "^1.52.0",
"playwright-core": "^1.52.0",
"quickjs-emscripten": "^0.32.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.0.0",
"esbuild": "^0.27.4",
"prettier": "^3.6.2",
"tsx": "^4.20.0",
"typescript": "^5.8.0",
"vitest": "^4.1.0"
}
}