-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.82 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@predicatesystems/runtime",
"version": "1.1.2",
"description": "TypeScript SDK for Sentience AI Agent Browser Automation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format-check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "husky",
"prepublishOnly": "npm test && npm run build",
"example:hello": "ts-node examples/hello.ts",
"example:basic": "ts-node examples/basic-agent.ts",
"example:agent-google": "ts-node examples/agent-google-search.ts",
"example:agent-amazon": "ts-node examples/agent-amazon-shopping.ts",
"example:agent-claude": "ts-node examples/agent-with-anthropic.ts",
"example:conversational-google": "ts-node examples/conversational-google-search.ts",
"example:conversational-amazon": "ts-node examples/conversational-amazon-shopping.ts",
"example:tracing": "ts-node examples/agent-with-tracing.ts",
"example:trace-replay": "ts-node examples/trace-replay-demo.ts",
"example:cloud-tracing": "ts-node examples/cloud-tracing-agent.ts",
"cli": "ts-node src/cli.ts"
},
"bin": {
"predicate": "./dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"canvas": "^3.2.1",
"playwright": "^1.40.0",
"sharp": "^0.34.5",
"turndown": "^7.2.2",
"uuid": "^9.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@types/turndown": "^5.0.3",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^29.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.51.0"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"openai": "^4.0.0",
"zhipuai-sdk-nodejs-v4": "^0.1.12"
},
"files": [
"dist",
"src/extension",
"spec",
"README.md",
"LICENSE"
],
"keywords": [
"browser-automation",
"playwright",
"ai-agent",
"web-automation",
"sentience"
],
"repository": {
"type": "git",
"url": "https://github.com/Predicate-Labs/sdk-typescript.git"
},
"bugs": {
"url": "https://github.com/Predicate-Labs/sdk-typescript/issues"
},
"homepage": "https://github.com/Predicate-Labs/sdk-typescript#readme",
"license": "(MIT OR Apache-2.0)",
"engines": {
"node": ">=20.0.0"
}
}