-
-
Notifications
You must be signed in to change notification settings - Fork 361
/
package.json
67 lines (67 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "zotero-pdf-translate",
"version": "2.0.14",
"description": "Translate PDF, EPub, webpage, metadata, annotations, notes to the target language. Support 20+ translate services.",
"config": {
"addonName": "Translate for Zotero",
"addonID": "[email protected]",
"addonRef": "zoteropdftranslate",
"prefsPrefix": "extensions.zotero.ZoteroPDFTranslate",
"addonInstance": "PDFTranslate"
},
"main": "src/index.ts",
"scripts": {
"start": "zotero-plugin serve",
"build": "tsc --noEmit && zotero-plugin build",
"release": "zotero-plugin release",
"lint": "prettier --write . && eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "npm update --save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windingwind/zotero-pdf-translate.git"
},
"author": "windingwind",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/windingwind/zotero-pdf-translate/issues"
},
"homepage": "https://github.com/windingwind/zotero-pdf-translate#readme",
"dependencies": {
"franc": "^6.2.0",
"iso639-js": "^1.1.3",
"jsencrypt": "^3.3.2",
"zotero-plugin-toolkit": "^4.0.11"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^20.17.8",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"zotero-plugin-scaffold": "^0.1.7",
"zotero-types": "^3.0.3"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}