This repository has been archived by the owner on Sep 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.34 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
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
101
102
103
{
"name": "zoterolatex",
"displayName": "Zotero LaTeX",
"description": "Zotero LaTeX support",
"version": "0.4.1",
"license": "MIT",
"publisher": "bnavetta",
"repository": {
"type": "git",
"url": "https://github.com/bnavetta/vscode-zotero-latex"
},
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:zoterolatex.addCitation",
"onCommand:zoterolatex.openInZotero"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "zoterolatex.addCitation",
"title": "Zotero: Add Citation"
},
{
"command": "zoterolatex.openInZotero",
"title": "Zotero: Open in Zotero"
}
],
"menus": {
"commandPalette": [
{
"command": "zoterolatex.addCitation",
"when": "editorLangId == 'latex'"
},
{
"command": "zoterolatex.openInZotero",
"when": "editorLangId == 'latex'"
}
]
},
"keybindings": [
{
"key": "alt+z",
"command": "zoterolatex.addCitation",
"when": "editorTextFocus && editorLangId == 'latex'"
}
],
"configuration": {
"type": "object",
"title": "Zotero LaTeX",
"properties": {
"zotero.serverUrl": {
"type": "string",
"default": "http://localhost:23119",
"description": "URL of the Zotero server",
"scope": "window"
},
"zotero.latexCommand": {
"type": "string",
"default": "autocite",
"scope": "window",
"description": "LaTeX command to use for citations"
},
"zotero.minimizeAfterPicking": {
"type": "boolean",
"default": false,
"scope": "window",
"description": "Minimize all Zotero windows after picking a citation"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run bundle",
"bundle": "rollup -c",
"watch": "rollup -c -w",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/got": "^9.6.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.0",
"builtin-modules": "^3.1.0",
"rollup": "^1.16.6",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2",
"vscode": "^1.1.35"
},
"dependencies": {
"got": "^9.6.0"
}
}