-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 KB
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
{
"name": "help-cli",
"version": "1.0.0",
"description": "",
"type": "module",
"exports": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && node esbuild/build.js",
"start": "node esbuild/build-dev.js && node --enable-source-maps dist-dev/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/marked": "^5.0.0",
"@types/marked-terminal": "^3.1.3",
"@types/node": "^20.2.5",
"@types/react": "^18.2.9",
"esbuild": "^0.18.4",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.4.0",
"clipboardy": "^3.0.0",
"conf": "^11.0.1",
"dedent": "^0.7.0",
"ink": "^4.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^5.0.1",
"json5": "^2.2.3",
"marked": "^5.1.0",
"marked-gfm-heading-id": "^3.0.4",
"marked-mangle": "^1.0.1",
"marked-terminal": "^5.2.0",
"meow": "^12.0.1",
"openai": "^3.2.1",
"react": "^18.2.0"
},
"engines": {
"node": ">=16.0.0"
}
}