{
	"name": "@getcrafty/browser-agent",
	"version": "1.0.9",
	"description": "TypeScript SDK for the Crafty Browser Agent",
	"keywords": [
		"ai",
		"automation",
		"browser",
		"browser-agent",
		"llm"
	],
	"author": "Crafty",
	"license": "MIT",
	"homepage": "https://getcrafty.io",
	"repository": "https://github.com/getcrafty/browser-agent",
	"type": "module",
	"main": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js"
		},
		"./package.json": "./package.json"
	},
	"files": [
		"dist",
		"cli-manifest.json",
		"scripts/install-cli.mjs",
		"LICENSE.md",
		"README.md"
	],
	"publishConfig": {
		"access": "public",
		"registry": "https://registry.npmjs.org/"
	},
	"engines": {
		"node": ">=20"
	},
	"scripts": {
		"build": "tsc",
		"postinstall": "node scripts/install-cli.mjs",
		"prepack": "npm run build && node ../../scripts/validate-cli-manifest.mjs",
		"test": "npm run build && npm run test:types && npm run test:coverage",
		"test:types": "tsc --noEmit --strict --target ES2022 --module ES2022 --moduleResolution bundler tests/types.types.ts",
		"test:unit": "tsx --test tests/*.test.ts",
		"test:coverage": "c8 --all --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --include='src/**/*.ts' --exclude='src/types.ts' tsx --test tests/*.test.ts"
	},
	"devDependencies": {
		"@types/node": "^22.0.0",
		"c8": "^12.0.0",
		"tsx": "^4.19.0",
		"typescript": "^5.9.3"
	}
}
