@vertana/cli 0.1.0-dev.1
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/LICENSE +20 -0
- package/dist/index.cjs +667 -0
- package/dist/index.d.cts +8 -0
- package/dist/index.d.mts +8 -0
- package/dist/index.mjs +639 -0
- package/package.json +91 -0
package/package.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vertana/cli",
|
|
3
|
+
"version": "0.1.0-dev.1",
|
|
4
|
+
"description": "Command-line interface for Vertana translation",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"LLM",
|
|
7
|
+
"translation",
|
|
8
|
+
"natural language processing",
|
|
9
|
+
"NLP",
|
|
10
|
+
"language model",
|
|
11
|
+
"CLI"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Hong Minhee",
|
|
16
|
+
"email": "hong@minhee.org",
|
|
17
|
+
"url": "https://hongminhee.org/"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://vertana.org/",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/dahlia/vertana.git",
|
|
23
|
+
"directory": "packages/cli"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/dahlia/vertana/issues"
|
|
27
|
+
},
|
|
28
|
+
"funding": [
|
|
29
|
+
"https://github.com/sponsors/dahlia"
|
|
30
|
+
],
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=20.0.0",
|
|
33
|
+
"bun": ">=1.2.0",
|
|
34
|
+
"deno": ">=2.3.0"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist/",
|
|
38
|
+
"package.json",
|
|
39
|
+
"README.md"
|
|
40
|
+
],
|
|
41
|
+
"type": "module",
|
|
42
|
+
"module": "./dist/index.mjs",
|
|
43
|
+
"main": "./dist/index.cjs",
|
|
44
|
+
"types": "./dist/index.d.mts",
|
|
45
|
+
"exports": {
|
|
46
|
+
".": {
|
|
47
|
+
"types": {
|
|
48
|
+
"require": "./dist/index.d.cts",
|
|
49
|
+
"import": "./dist/index.d.mts"
|
|
50
|
+
},
|
|
51
|
+
"require": "./dist/index.cjs",
|
|
52
|
+
"import": "./dist/index.mjs"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"bin": {
|
|
56
|
+
"vertana": "./dist/index.mjs"
|
|
57
|
+
},
|
|
58
|
+
"sideEffects": false,
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@logtape/logtape": "^1.3.5",
|
|
61
|
+
"@napi-rs/keyring": "^1.2.0",
|
|
62
|
+
"@optique/core": "^0.8.3",
|
|
63
|
+
"@optique/logtape": "^0.8.3",
|
|
64
|
+
"@optique/run": "^0.8.3",
|
|
65
|
+
"@vertana/facade": ""
|
|
66
|
+
},
|
|
67
|
+
"peerDependencies": {
|
|
68
|
+
"@ai-sdk/anthropic": "3.0.1",
|
|
69
|
+
"@ai-sdk/google": "3.0.1",
|
|
70
|
+
"@ai-sdk/openai": "3.0.1",
|
|
71
|
+
"ai": "6.0.3"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@ai-sdk/anthropic": "3.0.1",
|
|
75
|
+
"@ai-sdk/google": "3.0.1",
|
|
76
|
+
"@ai-sdk/openai": "3.0.1",
|
|
77
|
+
"@types/node": "^20.19.9",
|
|
78
|
+
"ai": "6.0.3",
|
|
79
|
+
"tsdown": "^0.18.3",
|
|
80
|
+
"typescript": "^5.9.3"
|
|
81
|
+
},
|
|
82
|
+
"scripts": {
|
|
83
|
+
"build": "tsdown",
|
|
84
|
+
"prepublish": "tsdown",
|
|
85
|
+
"run": "tsdown && node ./dist/index.mjs",
|
|
86
|
+
"test": "tsdown && node --experimental-transform-types --test --test-concurrency=4",
|
|
87
|
+
"test:bun": "tsdown && bun test",
|
|
88
|
+
"test:deno": "deno test --allow-env --allow-net --allow-read --allow-write --allow-ffi",
|
|
89
|
+
"test-all": "tsdown && node --experimental-transform-types --test && bun test && deno test"
|
|
90
|
+
}
|
|
91
|
+
}
|