-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.34 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@onkernel/cu-playwright",
"version": "0.1.2",
"description": "Computer Use x Playwright SDK",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./index.ts",
"type": "module",
"scripts": {
"build": "bun build ./index.ts --outdir ./dist --target node",
"format": "bun run eslint . --fix",
"lint": "bun run eslint .",
"lint:fix": "bun run eslint . --fix",
"prepublishOnly": "bun run lint && bun run build"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./index.ts"
}
},
"files": [
"dist/",
"index.ts",
"loop.ts",
"tools/",
"types/",
"utils/"
],
"keywords": [
"computer-use",
"playwright",
"anthropic",
"automation",
"ai",
"typescript"
],
"author": "Kernel",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"peerDependencies": {
"typescript": "^5",
"playwright": "^1.52.0"
},
"dependencies": {
"@anthropic-ai/sdk": "0.52.0",
"luxon": "3.6.0",
"zod": "^3.25.0",
"zod-to-json-schema": "^3.23.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0"
},
"publishConfig": {
"access": "public"
}
}