generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 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
{
"name": "obsidian-copilot",
"version": "1.1.3",
"description": "Adds a highly configurable copilot-like auto-completion to Obsidian using the ChatGPT API.",
"main": "main.js",
"scripts": {
"dev": "node prepare_demo_vault.mjs && node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"tests": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/node": "^16.11.6",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint-plugin-neverthrow": "^1.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"lru-cache": "^10.1.0",
"micromatch": "^4.0.5",
"neverthrow": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
}
}