generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "wikipedia-search",
"version": "2.6.0",
"description": "An Obsidian plugin to search, link and open Wikipedia articles, all within the app!",
"main": "src/main.js",
"type": "module",
"scripts": {
"prettify": "eslint --fix && npx prettier -w .",
"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",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [],
"author": "StrangeGirlMurph",
"license": "SEE LICENSE",
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"builtin-modules": "4.0.0",
"esbuild": "0.21.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"obsidian": "latest",
"prettier": "^3.2.5",
"tslib": "2.6.2",
"typescript": "5.4.5",
"vitepress": "^1.2.2"
},
"dependencies": {
"@popperjs/core": "^2.11.8"
}
}