forked from gouderm/vscode-papis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.86 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
{
"name": "vscode-papis",
"displayName": "Papis Cite",
"description": "",
"version": "1.0.3",
"repository": "https://github.com/gouderm/vscode-papis",
"publisher": "gouderm",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vscode-papis.openReference",
"onCommand:vscode-papis.openDirReference",
"onCommand:vscode-papis.editReference",
"onCommand:vscode-papis.editNotesReference",
"onCommand:vscode-papis.browseReference",
"onCommand:vscode-papis.insertCitation"
],
"main": "./out/extension.js",
"contributes": {
"configuration": [
{
"title": "Papis",
"properties": {
"vscode-papis.papisExecutablePath.darwin": {
"type": "string",
"title": "Darwin",
"markdownDescription": "Full path to Papis executable that should be used by the extension."
},
"vscode-papis.papisExecutablePath.linux": {
"type": "string",
"title": "Linux",
"markdownDescription": "Full path to Papis executable that should be used by the extension. \nExample: \n/usr/bin/papis"
},
"vscode-papis.defaultLibrary": {
"type": "string",
"title": "Default Library",
"description": "Name of papis library to use. If left blank, then the default library in papis is used."
}
}
}
],
"commands": [
{
"command": "vscode-papis.openReference",
"title": "Papis: Open Reference under Cursor"
},
{
"command": "vscode-papis.openDirReference",
"title": "Papis: Open folder of current reference"
},
{
"command": "vscode-papis.editReference",
"title": "Papis: Edit info-file of current reference"
},
{
"command": "vscode-papis.editNotesReference",
"title": "Papis: Edit notes-file of current reference"
},
{
"command": "vscode-papis.browseReference",
"title": "Papis: Browse current reference"
},
{
"command": "vscode-papis.insertCitation",
"title": "Papis: Insert citation"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"vsce": "^2.10.0",
"chokidar":"^3.5.3"
}
}