-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 905 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
32
33
{
"name": "obsidian-extract-pdf-annotations",
"version": "1.5.0",
"description": "Extract notes and highlights from PDF Files in Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"test": "jest",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.17.11",
"jest": "^29.7.0",
"obsidian": "^1.1.1",
"ts-jest": "^29.2.5",
"tslib": "2.5.0",
"typescript": "4.9.5"
},
"dependencies": {
"@types/pdf": "^0.0.31",
"eslint": "^8.36.0",
"handlebars": "^4.7.7"
}
}