opensteer 0.4.6 → 0.4.8
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.
- package/CHANGELOG.md +6 -3
- package/README.md +9 -4
- package/bin/opensteer.mjs +5 -3
- package/dist/{chunk-MGZ3QEYT.js → chunk-GQ7HNCM2.js} +544 -245
- package/dist/cli/server.cjs +540 -241
- package/dist/cli/server.js +3 -2
- package/dist/index.cjs +550 -250
- package/dist/index.d.cts +64 -41
- package/dist/index.d.ts +64 -41
- package/dist/index.js +13 -11
- package/package.json +73 -80
package/package.json
CHANGED
|
@@ -1,82 +1,75 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"require": "./dist/index.cjs"
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"files": [
|
|
22
|
-
"dist",
|
|
23
|
-
"bin",
|
|
24
|
-
"README.md",
|
|
25
|
-
"LICENSE",
|
|
26
|
-
"CHANGELOG.md"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "tsup src/index.ts src/cli/server.ts --dts --format esm,cjs --clean --external ai --external zod --external @ai-sdk/openai --external @ai-sdk/anthropic --external @ai-sdk/google --external @ai-sdk/xai --external @ai-sdk/groq",
|
|
30
|
-
"prepublishOnly": "pnpm run build",
|
|
31
|
-
"test": "vitest run",
|
|
32
|
-
"test:live-web": "vitest run --config vitest.live-web.config.ts",
|
|
33
|
-
"test:unit": "vitest run tests/html tests/element-path tests/config.test.ts tests/storage",
|
|
34
|
-
"test:actions": "vitest run tests/actions",
|
|
35
|
-
"test:integration": "vitest run tests/integration",
|
|
36
|
-
"test:ai": "vitest run tests/ai tests/e2e/ai-resolve.test.ts tests/e2e/ai-extract-products.test.ts",
|
|
37
|
-
"test:e2e": "vitest run tests/e2e",
|
|
38
|
-
"test:app:dev": "pnpm --dir tests/test-app run dev",
|
|
39
|
-
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
40
|
-
},
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"@ai-sdk/anthropic": "^3.0.46",
|
|
43
|
-
"@ai-sdk/google": "^3.0.30",
|
|
44
|
-
"@ai-sdk/groq": "^3.0.24",
|
|
45
|
-
"@ai-sdk/openai": "^3.0.26",
|
|
46
|
-
"@ai-sdk/xai": "^3.0.57",
|
|
47
|
-
"ai": "^6.0.77",
|
|
48
|
-
"cheerio": "^1.0.0-rc.12",
|
|
49
|
-
"dotenv": "^17.2.4",
|
|
50
|
-
"playwright": "^1.50.0",
|
|
51
|
-
"ws": "^8.18.0",
|
|
52
|
-
"zod": "^4.3.6"
|
|
53
|
-
},
|
|
54
|
-
"devDependencies": {
|
|
55
|
-
"@types/node": "^22.10.0",
|
|
56
|
-
"@types/ws": "^8.5.13",
|
|
57
|
-
"domhandler": "^5.0.3",
|
|
58
|
-
"tsup": "^8.0.1",
|
|
59
|
-
"typescript": "^5.6.3",
|
|
60
|
-
"vite": "^7.3.1",
|
|
61
|
-
"vitest": "^2.1.8"
|
|
62
|
-
},
|
|
63
|
-
"pnpm": {
|
|
64
|
-
"onlyBuiltDependencies": [
|
|
65
|
-
"esbuild"
|
|
66
|
-
]
|
|
67
|
-
},
|
|
68
|
-
"engines": {
|
|
69
|
-
"node": ">=20"
|
|
70
|
-
},
|
|
71
|
-
"keywords": [
|
|
72
|
-
"browser-automation",
|
|
73
|
-
"selectors",
|
|
74
|
-
"playwright",
|
|
75
|
-
"llm",
|
|
76
|
-
"agents"
|
|
77
|
-
],
|
|
78
|
-
"repository": {
|
|
79
|
-
"type": "git",
|
|
80
|
-
"url": "https://github.com/opensteer-ai/opensteer"
|
|
2
|
+
"name": "opensteer",
|
|
3
|
+
"version": "0.4.8",
|
|
4
|
+
"description": "Open-source browser automation SDK with robust selectors and deterministic replay.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"opensteer": "./bin/opensteer.mjs"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.cjs",
|
|
11
|
+
"module": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"require": "./dist/index.cjs"
|
|
81
18
|
}
|
|
82
|
-
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"bin",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"CHANGELOG.md"
|
|
26
|
+
],
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@ai-sdk/anthropic": "^3.0.46",
|
|
29
|
+
"@ai-sdk/google": "^3.0.30",
|
|
30
|
+
"@ai-sdk/groq": "^3.0.24",
|
|
31
|
+
"@ai-sdk/openai": "^3.0.26",
|
|
32
|
+
"@ai-sdk/xai": "^3.0.57",
|
|
33
|
+
"ai": "^6.0.77",
|
|
34
|
+
"cheerio": "^1.0.0-rc.12",
|
|
35
|
+
"dotenv": "^17.2.4",
|
|
36
|
+
"playwright": "^1.50.0",
|
|
37
|
+
"ws": "^8.18.0",
|
|
38
|
+
"zod": "^4.3.6"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^22.10.0",
|
|
42
|
+
"@types/ws": "^8.5.13",
|
|
43
|
+
"domhandler": "^5.0.3",
|
|
44
|
+
"tsup": "^8.0.1",
|
|
45
|
+
"typescript": "^5.6.3",
|
|
46
|
+
"vite": "^7.3.1",
|
|
47
|
+
"vitest": "^2.1.8"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=20"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"browser-automation",
|
|
54
|
+
"selectors",
|
|
55
|
+
"playwright",
|
|
56
|
+
"llm",
|
|
57
|
+
"agents"
|
|
58
|
+
],
|
|
59
|
+
"repository": {
|
|
60
|
+
"type": "git",
|
|
61
|
+
"url": "https://github.com/opensteer-ai/opensteer"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"build": "tsup src/index.ts src/cli/server.ts --dts --format esm,cjs --clean --external ai --external zod --external @ai-sdk/openai --external @ai-sdk/anthropic --external @ai-sdk/google --external @ai-sdk/xai --external @ai-sdk/groq",
|
|
65
|
+
"test": "vitest run",
|
|
66
|
+
"test:live-web": "vitest run --config vitest.live-web.config.ts",
|
|
67
|
+
"test:unit": "vitest run tests/html tests/element-path tests/config.test.ts tests/storage",
|
|
68
|
+
"test:actions": "vitest run tests/actions",
|
|
69
|
+
"test:integration": "vitest run tests/integration",
|
|
70
|
+
"test:ai": "vitest run tests/ai tests/e2e/ai-resolve.test.ts tests/e2e/ai-extract-products.test.ts",
|
|
71
|
+
"test:e2e": "vitest run tests/e2e",
|
|
72
|
+
"test:app:dev": "pnpm --dir tests/test-app run dev",
|
|
73
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
74
|
+
}
|
|
75
|
+
}
|