mirror of
https://github.com/shane-lamb/obsidian-llm-docs.git
synced 2026-07-22 05:44:55 +00:00
35 lines
866 B
JSON
35 lines
866 B
JSON
{
|
|
"name": "obsidian-llm-docs",
|
|
"version": "1.0.0",
|
|
"description": "Chat with LLM (ChatGPT) inside Obsidian files",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"Obsidian",
|
|
"LLM",
|
|
"ChatGPT"
|
|
],
|
|
"author": "Shane Lamb",
|
|
"devDependencies": {
|
|
"@codemirror/language": "^6.10.8",
|
|
"@types/node": "18.15.0",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"jest": "^29.7.0",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.5.3",
|
|
"ts-jest": "^29.2.5",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"ignore": "^7.0.3",
|
|
"node-fetch": "^3.3.2"
|
|
}
|
|
}
|