-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 2.06 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
{
"name": "markdb-connect",
"version": "0.1.4",
"description": "Zotero plugin that links your Markdown database to Zotero.",
"author": "Dae Houlihan <dev@daeh.info> (https://daeh.info)",
"license": "MIT",
"config": {
"addonName": "MarkDB-Connect",
"addonID": "daeda@mit.edu",
"addonRef": "mdbc",
"addonInstance": "MDBC",
"prefsPrefix": "extensions.zotero.mdbc",
"updateJSON": "https://raw.githubusercontent.com/daeh/zotero-markdb-connect/main/update.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daeh/zotero-markdb-connect.git"
},
"bugs": {
"url": "https://github.com/daeh/zotero-markdb-connect/issues"
},
"homepage": "https://github.com/daeh/zotero-markdb-connect#readme",
"scripts": {
"start": "zotero-plugin serve",
"build": "tsc --noEmit && zotero-plugin build",
"lint": "export ESLINT_USE_FLAT_CONFIG=true && export NODE_ENV=production && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix .",
"lint:repo": "export ESLINT_USE_FLAT_CONFIG=true && export NODE_ENV=repo && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix .",
"release": "zotero-plugin release",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "npm outdated --depth=0; npm update --save; npm update --save-dev; npm outdated --depth=0"
},
"dependencies": {
"zotero-plugin-toolkit": "^4.0.7"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.10.1",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"zotero-plugin-scaffold": "^0.1.7",
"zotero-types": "^3.0.1"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}