forked from nhaouari/obsidian-textgenerator-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "obsidian-textgenerator-plugin",
"version": "0.4.7",
"description": "Text generator is a handy plugin that helps you generate text content using GPT-3 (OpenAI).",
"main": "main.js",
"scripts": {
"dev": "npm run build:css && node esbuild.config.mjs",
"build": "npm run build:css && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"eslint": "eslint --fix ./src/**/*.{js,jsx,ts,tsx,json}",
"build:css": "postcss ./src/css/global.css -o styles.css",
"dev:css": "postcss ./src/css/global.css -o styles.css --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/lodash.get": "^4.4.7",
"@types/lodash.set": "^4.3.7",
"@types/node": "^16.18.38",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/semver": "^7.5.0",
"@types/three": "^0.155.0",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"builtin-modules": "^3.3.0",
"daisyui": "^3.2.1",
"esbuild": "0.13.12",
"esbuild-plugin-wasm": "^1.1.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"obsidian": "^1.2.8",
"prettier": "^2.8.8",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"dependencies": {
"@codemirror/language": "^6.8.0",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.14.1",
"@dqbd/tiktoken": "^1.0.7",
"@google-ai/generativelanguage": "^1.0.0",
"@huggingface/inference": "^2.6.1",
"@mozilla/readability": "^0.4.4",
"@tabler/icons-react": "^2.25.0",
"ansi-to-html": "^0.7.2",
"autoprefixer": "^10.4.14",
"cheminfo-types": "^1.7.2",
"chromadb": "^1.5.5",
"clsx": "^2.0.0",
"compute-cosine-similarity": "^1.0.0",
"cssnano": "^6.0.1",
"debug": "^2.6.9",
"esbuild-wasm": "^0.17.19",
"handlebars": "^4.7.7",
"langchain": "^0.0.151",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lucide-react": "^0.263.1",
"natural": "^5.2.4",
"obsidian-dataview": "^0.5.56",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"pretty-error": "^4.0.0",
"react": "^18.2.0",
"react-confirm-alert": "^3.0.6",
"react-dom": "^18.2.0",
"react-dropdown-tree-select": "^2.8.0",
"react-force-graph": "^1.43.0",
"react-force-graph-3d": "^1.23.0",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"replicate": "^0.16.1",
"request": "^2.88.2",
"safe-await": "^2.0.0",
"semver": "^7.5.4",
"sse": "github:mpetazzoni/sse.js",
"tailwindcss": "^3.3.3",
"tesseract.js": "^4.1.1",
"text-spinners": "^1.0.5",
"three": "^0.155.0",
"turndown": "^7.1.2",
"usehooks-ts": "^2.9.1",
"youtube-transcript": "^1.0.6",
"zod": "^3.21.4",
"zustand": "^4.3.9"
}
}