-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.09 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
{
"name": "copy-reference",
"displayName": "Reference",
"publisher": "Otard",
"description": "Generate and copy a reference to a piece of code.",
"version": "1.2.0",
"repository": {
"url": "https://github.com/Otard95/vscode-copy-reference"
},
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:copy-reference.copyAtCursor"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Copy Reference",
"properties": {
"copy-reference.format": {
"type": "string",
"default": "Markdown",
"enum": [
"Markdown",
"Plain Text",
"Custom"
],
"description": "The default format the reference will we copied in."
},
"copy-reference.customBlock": {
"type": "string",
"description": "Specify your own reference block format."
},
"copy-reference.customSimple": {
"type": "string",
"description": "Specify your own simple reference format."
},
"copy-reference.disableCopyConfirmation": {
"type": "boolean",
"description": "Disable the info message confirming that the reference was copied"
}
}
},
"commands": [
{
"command": "copy-reference.copyAtCursor",
"title": "Copy Reference"
}
],
"menus": {
"editor/context": [
{
"when": "editorTextFocus",
"command": "copy-reference.copyAtCursor",
"group": "copy-reference"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.7.4"
}
}