-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.71 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
{
"name": "sublime-duplicate-text",
"displayName": "Sublime Duplicate Text",
"description": "Duplicate exactly what you have highlighted. Nothing extra.",
"version": "0.3.1",
"publisher": "brian-anders",
"repository": {
"type": "git",
"url": "https://github.com/briananders/sublime-text-dublicate"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"license": "MIT",
"icon": "images/duplicate.png",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "sublime-duplicate-text.duplicateText",
"title": "Sublime Duplicate Text"
}
],
"keybindings": [
{
"mac": "cmd+shift+d",
"linux": "ctrl+shift+d",
"key": "ctrl+shift+d",
"command": "sublime-duplicate-text.duplicateText",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"package": "vsce package",
"clean": "rm -rf out"
},
"devDependencies": {
"@types/mocha": "^10.x",
"@types/node": "^20.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^7.x",
"@typescript-eslint/parser": "^7.x",
"@vscode/test-electron": "^2.3.x",
"@vscode/vsce": "^2.x",
"eslint": "^8.x",
"mocha": "^10.x",
"prettier": "^3.x",
"typescript": "^5.x"
}
}