-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
131 lines (131 loc) · 3.4 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "pandocciter",
"displayName": "Pandoc Citer",
"description": "Autocomplete bibtex citations for markdown/pandoc",
"version": "0.10.4",
"publisher": "notZaki",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"icon": "icon.png",
"homepage": "https://github.com/notZaki/PandocCiter",
"repository": {
"type": "git",
"url": "https://github.com/notZaki/PandocCiter"
},
"bugs": {
"url": "https://github.com/notZaki/PandocCiter/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown",
"onLanguage:rmd",
"onLanguage:pweave_md",
"onLanguage:quarto"
],
"main": "./out/extension",
"contributes": {
"grammars": [
{
"injectTo": [
"text.html.markdown",
"text.html.markdown.redcarpet",
"source.pweave.md"
],
"scopeName": "pandoc-citation",
"path": "./syntaxes/citations.json"
}
],
"configuration": {
"title": "PandocCiter",
"properties": {
"PandocCiter.ViewType": {
"type": "string",
"enum": [
"inline",
"browser"
],
"default": "inline",
"description": "How citation completions are shown"
},
"PandocCiter.RootFile": {
"type": "string",
"default": "",
"scope": "resource",
"description": "Main document containing YAML for bibliography"
},
"PandocCiter.ShowLog": {
"type": "boolean",
"default": false,
"description": "Should log be shown in Output panel"
},
"PandocCiter.DefaultBib": {
"type": "string",
"default": "",
"scope": "resource",
"description": "Path to default bib file"
},
"PandocCiter.DefaultBibs": {
"type": "array",
"default": [],
"scope": "resource",
"description": "Path to default bib files"
},
"PandocCiter.UseDefaultBib": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Whether to use the Default Bib"
},
"PandocCiter.ForgetUnusedBib": {
"type": "boolean",
"default": true,
"description": "Whether to forget bib file when changing documents"
},
"PandocCiter.CitationFormat": {
"type": "array",
"default": [
"author",
"title",
"journal",
"container-title",
"publisher",
"booktitle",
"year"
],
"description": "List of fields displayed in preview"
},
"PandocCiter.CrossRefMode": {
"type": "string",
"default": "full",
"description": "The features of CrossRef functionalities to enable",
"enum": [
"full",
"minimal",
"none"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"chokidar": "^3.5.3",
"latex-utensils": "^6.2.0",
"js-yaml": "^4"
},
"devDependencies": {
"@types/node": "^20.10.8",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"@types/vscode": "^1.85.0"
}
}