libretto 0.6.17 → 0.6.18
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libretto",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.18",
|
|
4
4
|
"description": "AI-powered browser automation library and CLI built on Playwright",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://libretto.sh",
|
|
@@ -30,21 +30,6 @@
|
|
|
30
30
|
"default": "./dist/index.js"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"sync:mirrors": "node ../dev-tools/scripts/sync-mirrors.mjs",
|
|
35
|
-
"check:mirrors": "node ../dev-tools/scripts/check-mirrors-sync.mjs",
|
|
36
|
-
"sync-skills": "pnpm run sync:mirrors",
|
|
37
|
-
"check:skills": "pnpm run check:mirrors",
|
|
38
|
-
"build": "tsup --config tsup.config.ts",
|
|
39
|
-
"lint": "lintcn lint --tsconfig tsconfig.json",
|
|
40
|
-
"type-check": "tsc --noEmit",
|
|
41
|
-
"test": "turbo run test:vitest --filter=libretto --log-order=grouped",
|
|
42
|
-
"test:vitest": "vitest run",
|
|
43
|
-
"test:watch": "vitest",
|
|
44
|
-
"cli": "node dist/index.js",
|
|
45
|
-
"generate-changelog": "tsx scripts/generate-changelog.ts",
|
|
46
|
-
"prepack": "pnpm run build"
|
|
47
|
-
},
|
|
48
33
|
"peerDependencies": {
|
|
49
34
|
"@ai-sdk/anthropic": "^3.0.58",
|
|
50
35
|
"@ai-sdk/google": "^3.0.51",
|
|
@@ -85,11 +70,25 @@
|
|
|
85
70
|
"vitest": "^4.1.5"
|
|
86
71
|
},
|
|
87
72
|
"dependencies": {
|
|
88
|
-
"affordance": "workspace:^",
|
|
89
73
|
"ai": "^6.0.116",
|
|
90
74
|
"esbuild": "^0.27.0",
|
|
91
75
|
"playwright": "^1.58.2",
|
|
92
76
|
"tsx": "^4.21.0",
|
|
93
|
-
"zod": "^4.3.6"
|
|
77
|
+
"zod": "^4.3.6",
|
|
78
|
+
"affordance": "^0.2.0"
|
|
79
|
+
},
|
|
80
|
+
"scripts": {
|
|
81
|
+
"sync:mirrors": "node ../dev-tools/scripts/sync-mirrors.mjs",
|
|
82
|
+
"check:mirrors": "node ../dev-tools/scripts/check-mirrors-sync.mjs",
|
|
83
|
+
"sync-skills": "pnpm run sync:mirrors",
|
|
84
|
+
"check:skills": "pnpm run check:mirrors",
|
|
85
|
+
"build": "tsup --config tsup.config.ts",
|
|
86
|
+
"lint": "lintcn lint --tsconfig tsconfig.json",
|
|
87
|
+
"type-check": "tsc --noEmit",
|
|
88
|
+
"test": "turbo run test:vitest --filter=libretto --log-order=grouped",
|
|
89
|
+
"test:vitest": "vitest run",
|
|
90
|
+
"test:watch": "vitest",
|
|
91
|
+
"cli": "node dist/index.js",
|
|
92
|
+
"generate-changelog": "tsx scripts/generate-changelog.ts"
|
|
94
93
|
}
|
|
95
|
-
}
|
|
94
|
+
}
|
package/skills/libretto/SKILL.md
CHANGED