generated from windingwind/zotero-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 KB
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
{
"name": "zotracer",
"version": "1.0.6",
"description": "Tracks your research activities, creates detailed timelines, and exports notes to platforms like Flomo.",
"config": {
"addonName": "ZoTracer",
"addonID": "zotracer@euclpts.com",
"addonRef": "zotracer",
"addonInstance": "ZoTracer",
"prefsPrefix": "extensions.zotero.zotracer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etShaw-zh/zotracer.git"
},
"author": "etShaw-zh",
"bugs": {
"url": "https://github.com/etShaw-zh/zotracer/issues"
},
"homepage": "https://github.com/etShaw-zh/zotracer#readme",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "zotero-plugin serve",
"build": "zotero-plugin build",
"lint:check": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"release": "zotero-plugin release",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "npm update --save"
},
"dependencies": {
"zotero-plugin-toolkit": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/node": "^22.14.1",
"eslint": "^9.28.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"zotero-plugin-scaffold": "^0.6.0",
"zotero-types": "^3.1.9"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}