-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 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
{
"name": "sentienceapi",
"version": "0.90.7",
"description": "TypeScript SDK for Sentience AI Agent Browser Automation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"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": {
"sentience": "./dist/cli.js"
},
"dependencies": {
"playwright": "^1.40.0",
"turndown": "^7.2.2",
"uuid": "^9.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@types/turndown": "^5.0.3",
"@types/uuid": "^9.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"optionalDependencies": {
"openai": "^4.0.0",
"@anthropic-ai/sdk": "^0.20.0"
},
"files": [
"dist",
"src/extension",
"spec",
"README.md",
"LICENSE"
],
"keywords": [
"browser-automation",
"playwright",
"ai-agent",
"web-automation",
"sentience"
],
"repository": {
"type": "git",
"url": "https://github.com/SentienceAPI/sentience-ts.git"
},
"bugs": {
"url": "https://github.com/SentienceAPI/sentience-ts/issues"
},
"homepage": "https://github.com/SentienceAPI/sentience-ts#readme",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
}
}