-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "zotero",
"displayName": "Citation Picker for Zotero",
"description": "Zotero Better Bibtex citation picker for VS Code",
"version": "0.1.11",
"publisher": "mblode",
"author": {
"name": "Matthew Blode",
"email": "m@blode.co",
"url": "https://matthewblode.com"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"homepage": "https://github.com/mblode/vscode-zotero",
"bugs": {
"url": "https://github.com/mblode/vscode-zotero/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mblode/vscode-zotero.git"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other"
],
"keywords": [
"markdown",
"zotero",
"betterbibtex",
"better bibtex",
"citations"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.zoteroCitationPicker",
"title": "Zotero Citation Picker"
},
{
"command": "extension.openInZotero",
"title": "Open in Zotero"
},
{
"command": "extension.openPDFZotero",
"title": "Open PDF from Zotero"
}
],
"keybindings": [
{
"command": "extension.zoteroCitationPicker",
"key": "alt+shift+z"
},
{
"command": "extension.openInZotero",
"key": "ctrl+shift+z"
},
{
"command": "extension.openPDFZotero",
"key": "ctrl+alt+shift+z"
}
],
"configuration": {
"type": "object",
"title": "Zotero Citation Picker",
"properties": {
"zotero-citation-picker.port": {
"type": "string",
"default": "http://127.0.0.1:23119/better-bibtex/cayw?format=pandoc",
"description": "Customise what port/URL will be used for the picker."
}
}
}
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "18.x",
"@types/request-promise": "^4.1.50",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"request": "^2.88.0",
"request-promise": "^4.2.5"
}
}