@pilllesss/yorn 1.0.1 → 1.0.3
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/dist/providers/data/.manifest.json +1 -1
- package/dist/providers/data/google-vertex.json +1 -1
- package/dist/providers/data/google.json +1 -1
- package/dist/providers/data/nvidia.json +1 -1
- package/dist/providers/data/opencode-go.json +1 -1
- package/dist/providers/data/opencode.json +1 -1
- package/dist/providers/data/openrouter.json +1 -1
- package/dist/providers/data/vercel-ai-gateway.json +1 -1
- package/dist/yorn.cjs +758 -757
- package/package.json +25 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pilllesss/yorn",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Yorn terminal AI coding agent CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -26,17 +26,34 @@
|
|
|
26
26
|
"yorn": "tsx src/yorn.ts"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
+
"@silvia-odwyer/photon-node": "0.3.4",
|
|
30
|
+
"@xenova/transformers": "^2.17.2",
|
|
31
|
+
"tiktoken": "^1.0.22",
|
|
32
|
+
"undici": "8.9.0",
|
|
33
|
+
"youtube-transcript": "^1.3.1",
|
|
34
|
+
"youtubei.js": "^18.0.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
29
37
|
"@anthropic-ai/sdk": "0.91.1",
|
|
30
38
|
"@aws-sdk/client-bedrock-runtime": "3.1048.0",
|
|
31
39
|
"@google/genai": "1.52.0",
|
|
32
40
|
"@opentelemetry/api": "1.9.0",
|
|
33
|
-
"@silvia-odwyer/photon-node": "0.3.4",
|
|
34
41
|
"@smithy/node-http-handler": "4.7.3",
|
|
35
|
-
"@
|
|
42
|
+
"@swc/core": "^1.16.1",
|
|
43
|
+
"@types/cross-spawn": "6.0.6",
|
|
44
|
+
"@types/diff": "7.0.2",
|
|
45
|
+
"@types/gradient-string": "^1.1.6",
|
|
46
|
+
"@types/hosted-git-info": "3.0.5",
|
|
47
|
+
"@types/node": "24.12.4",
|
|
48
|
+
"@types/proper-lockfile": "4.1.4",
|
|
49
|
+
"@types/semver": "7.7.1",
|
|
50
|
+
"@types/turndown": "^5.0.6",
|
|
51
|
+
"bytenode": "^1.6.0",
|
|
36
52
|
"chalk": "5.6.2",
|
|
37
53
|
"cheerio": "^1.2.0",
|
|
38
54
|
"cross-spawn": "7.0.6",
|
|
39
55
|
"diff": "8.0.4",
|
|
56
|
+
"esbuild": "^0.28.2",
|
|
40
57
|
"get-east-asian-width": "1.6.0",
|
|
41
58
|
"glob": "13.0.6",
|
|
42
59
|
"gradient-string": "^3.0.0",
|
|
@@ -47,36 +64,19 @@
|
|
|
47
64
|
"https-proxy-agent": "7.0.6",
|
|
48
65
|
"ignore": "7.0.5",
|
|
49
66
|
"jiti": "2.7.0",
|
|
67
|
+
"js-confuser": "^2.1.3",
|
|
50
68
|
"marked": "18.0.5",
|
|
51
69
|
"minimatch": "10.2.5",
|
|
52
70
|
"openai": "6.40.0",
|
|
53
71
|
"partial-json": "0.1.7",
|
|
54
72
|
"proper-lockfile": "4.1.2",
|
|
55
73
|
"semver": "7.8.0",
|
|
56
|
-
"tiktoken": "^1.0.22",
|
|
57
|
-
"turndown": "^7.2.4",
|
|
58
|
-
"typebox": "1.3.7",
|
|
59
|
-
"undici": "8.9.0",
|
|
60
|
-
"yaml": "2.9.0",
|
|
61
|
-
"youtube-transcript": "^1.3.1",
|
|
62
|
-
"youtubei.js": "^18.0.0"
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@swc/core": "^1.16.1",
|
|
66
|
-
"@types/cross-spawn": "6.0.6",
|
|
67
|
-
"@types/diff": "7.0.2",
|
|
68
|
-
"@types/gradient-string": "^1.1.6",
|
|
69
|
-
"@types/hosted-git-info": "3.0.5",
|
|
70
|
-
"@types/node": "24.12.4",
|
|
71
|
-
"@types/proper-lockfile": "4.1.4",
|
|
72
|
-
"@types/semver": "7.7.1",
|
|
73
|
-
"@types/turndown": "^5.0.6",
|
|
74
|
-
"bytenode": "^1.6.0",
|
|
75
|
-
"esbuild": "^0.28.2",
|
|
76
|
-
"js-confuser": "^2.1.3",
|
|
77
74
|
"shx": "0.4.0",
|
|
75
|
+
"turndown": "^7.2.4",
|
|
78
76
|
"tsx": "4.22.1",
|
|
79
|
-
"
|
|
77
|
+
"typebox": "1.3.7",
|
|
78
|
+
"typescript": "5.9.3",
|
|
79
|
+
"yaml": "2.9.0"
|
|
80
80
|
},
|
|
81
81
|
"keywords": [
|
|
82
82
|
"yorn",
|