generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.23 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": "recipe-grabber",
"version": "0.21.0",
"description": "Quickly grab the important contents of any online recipe.",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/seethroughdev/obsidian-recipe-grabber"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint src",
"format": "prettier --write src/**/*.ts",
"prebuild": "npm run lint && npm run format",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/dateformat": "^5.0.2",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"builtin-modules": "3.3.0",
"esbuild": "0.19.11",
"eslint": "^8.57.0",
"obsidian": "latest",
"prettier": "^3.2.5",
"tslib": "2.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.7.1"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dateformat": "^5.0.3",
"file-type": "^19.0.0",
"handlebars": "^4.7.8",
"schema-dts": "^1.1.2"
}
}