generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "obsidian-recipe-view",
"version": "0.3.6",
"description": "View your notes as interactive recipe cards while you cook.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "svelte-check --workspace src && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "npx eslint src",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-svelte": "^0.8.0",
"eslint-plugin-svelte": "^2.33.2",
"jest": "^29.7.0",
"obsidian": "latest",
"svelte": "^4.2.0",
"svelte-check": "^3.5.2",
"svelte-preprocess": "^5.0.4",
"ts-jest": "^29.1.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"fraction.js": "^4.3.6"
}
}