-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 984 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 984 Bytes
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
{
"name": "trans-spec",
"version": "1.0.0",
"description": "Translate your OpenAPI specification into any language and generate a multilingual documentation site in seconds",
"main": "cli/index.js",
"scripts": {
"test": "echo \"No tests yet\" && exit 0"
},
"bin": {
"trans-spec": "./cli/index.js"
},
"type": "module",
"keywords": [
"api",
"documentation",
"openapi",
"swagger",
"translation",
"i18n",
"multilingual",
"ai"
],
"author": "Ademola Thompson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ade555/trans-spec.git"
},
"bugs": {
"url": "https://github.com/ade555/trans-spec/issues"
},
"homepage": "https://github.com/ade555/trans-spec#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"cli",
"viewer",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"ora": "^9.3.0"
}
}