generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 876 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
28
29
30
31
{
"name": "gpt-liteinquirer",
"version": "1.1.5",
"description": "Experience OpenAI ChatGPT assistance directly within Obsidian, drafting content without interrupting your creative flow.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs",
"lint": "eslint .",
"pretty": "prettier --check \"**/*.{ts,css,scss,json,mjs,jsx,md}\""
},
"pre-commit": [
"lint"
],
"keywords": [],
"author": "ittuann",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"builtin-modules": "3.3.0",
"esbuild": "0.19.5",
"obsidian": "latest",
"tslib": "2.6.2",
"typescript": "5.2.2",
"eslint": "^8.53.0",
"prettier": "^3.1.0"
}
}