agentscreenshots 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "agentscreenshots",
3
+ "version": "0.1.0",
4
+ "description": "Local-first website screenshots for AI coding agents.",
5
+ "type": "module",
6
+ "homepage": "https://agentscreenshots.com",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/ArchMiha/agentscreenshots.git",
10
+ "directory": "cli"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/ArchMiha/agentscreenshots/issues"
14
+ },
15
+ "bin": {
16
+ "agentshot": "dist/index.js"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "AGENT-INSTRUCTIONS.md",
22
+ "LICENSE"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsc -p tsconfig.json",
26
+ "check": "tsc -p tsconfig.json --noEmit",
27
+ "dev": "tsx src/index.ts",
28
+ "postinstall": "playwright install chromium",
29
+ "prepublishOnly": "npm run check && npm run build"
30
+ },
31
+ "keywords": [
32
+ "agents",
33
+ "screenshots",
34
+ "playwright",
35
+ "cli",
36
+ "localhost"
37
+ ],
38
+ "license": "SEE LICENSE IN LICENSE",
39
+ "publishConfig": {
40
+ "access": "public"
41
+ },
42
+ "dependencies": {
43
+ "playwright": "^1.60.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/node": "^25.7.0",
47
+ "tsx": "^4.21.0",
48
+ "typescript": "^6.0.3"
49
+ },
50
+ "engines": {
51
+ "node": ">=20"
52
+ }
53
+ }