generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 857 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
{
"name": "local-quotes",
"version": "1.9.0",
"description": "Collect your quotes from all over the repository and embed them in different locations with refresh delays.",
"main": "main.js",
"scripts": {
"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",
"test": "npx jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.18.17",
"jest": "^29.6.2",
"obsidian": "^1.3.5",
"ts-jest": "^29.1.1",
"tslib": "2.6.1",
"typescript": "5.1.6"
}
}