generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
27 lines (27 loc) · 812 Bytes
/
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
{
"name": "chatgpt-md",
"version": "2.2.3",
"description": "A seamless integration of openAIs GPT LLMs and Ollama into Obsidian.",
"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",
"update-version": "node update-version.mjs"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "8.29.1",
"@typescript-eslint/parser": "8.29.1",
"builtin-modules": "5.0.0",
"esbuild": "0.25.2",
"eslint": "^9.24.0",
"obsidian": "latest",
"prettier": "^3.5.3",
"tslib": "2.8.1",
"typescript": "5.8.3"
}
}