@agenticpotato/browseros 1.0.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.
Files changed (2) hide show
  1. package/dist/index.js +79856 -0
  2. package/package.json +52 -0
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@agenticpotato/browseros",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "homepage": "https://github.com/andrerpena/agentic#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/andrerpena/agentic/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/andrerpena/agentic.git"
12
+ },
13
+ "license": "ISC",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "author": "",
21
+ "type": "commonjs",
22
+ "main": "dist/index.js",
23
+ "bin": {
24
+ "browseros": "dist/index.js"
25
+ },
26
+ "scripts": {
27
+ "build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --banner:js='#!/usr/bin/env node'",
28
+ "dev": "tsx src/index.ts",
29
+ "typecheck": "tsc --noEmit",
30
+ "start": "node dist/index.js",
31
+ "lint": "biome check .",
32
+ "lint:fix": "biome check --write .",
33
+ "test": "vitest run",
34
+ "test:watch": "vitest",
35
+ "test:integration": "vitest run --include 'src/**/*.integration.test.ts'"
36
+ },
37
+ "dependencies": {
38
+ "@modelcontextprotocol/sdk": "^1.27.1",
39
+ "cheerio": "^1.2.0",
40
+ "commander": "^14.0.3",
41
+ "dotenv": "^17.3.1",
42
+ "zod": "^4.3.6"
43
+ },
44
+ "devDependencies": {
45
+ "@biomejs/biome": "^2.4.6",
46
+ "@types/node": "^25.3.5",
47
+ "esbuild": "^0.27.3",
48
+ "tsx": "^4.21.0",
49
+ "typescript": "^5.9.3",
50
+ "vitest": "^4.0.18"
51
+ }
52
+ }