-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
50
51
{
"name": "ollamark",
"version": "0.1.0",
"description": "A command-line client for Ollama with markdown support",
"module": "./dist/ollamark.js",
"engines": {
"bun": ">=1.0"
},
"type": "module",
"bin": {
"ollamark": "./dist/ollamark.js"
},
"files": [
"dist"
],
"scripts": {
"dist": "bun build src/ollamark.tsx --outdir dist --target node --sourcemap -e '@vscode/vscode-languagedetection' -e 'chalk' -e 'cli-highlight' -e 'commander' -e 'ink*' -e 'lodash-es' -e 'mdast*' -e 'ollama' -e 'react*' -e 'rehype*' -e 'remark*' -e 'tinycolor2' -e 'unist*' -e 'micromark*' -e 'unified'",
"prepublish": "bun dist"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/tinycolor2": "^1.4.6",
"react-devtools-core": "^5.3.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@vscode/vscode-languagedetection": "^1.0.22",
"chalk": "^5.3.0",
"cli-highlight": "^2.1.11",
"commander": "^12.1.0",
"ink": "^5.0.1",
"ink-link": "^4.1.0",
"ink-spinner": "^5.0.0",
"lodash-es": "^4.17.21",
"mdast-util-compact": "^5.0.0",
"ollama": "^0.5.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-parse": "^9.0.1",
"rehype-remark": "^10.0.0",
"remark-emoji": "latest",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tinycolor2": "^1.6.0",
"unist-util-select": "^5.1.0",
"unist-util-visit": "^5.0.0"
}
}