-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 KB
/
package.json
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
48
49
{
"name": "chatgpt-md-translator",
"version": "1.7.1",
"description": "Markdown Translator with ChatGPT",
"main": "lib/index.js",
"bin": {
"chatgpt-md-translator": "lib/index.js"
},
"scripts": {
"build": "tsc",
"test": "tsx --test src/**/*.test.ts",
"format": "biome format --write ./src ./biome.json",
"lint": "biome lint ./src",
"ci": "biome ci ./src"
},
"keywords": [
"cli",
"markdown",
"chatgpt",
"translator"
],
"author": "Soichiro Miki <smiki-tky@umin.ac.jp>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/smikitky/chatgpt-md-translator.git"
},
"type": "module",
"dependencies": {
"dashdash": "^2.0.0",
"dotenv": "^16.0.3",
"https-proxy-agent": "^6.2.0",
"node-fetch": "^3.3.2",
"picocolors": "^1.0.0",
"string-width": "^7.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@types/dashdash": "^1.14.1",
"@types/node": "^20.5.7",
"tsx": "^4.7.1",
"typescript": "^5.2.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}