-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
162 lines (162 loc) · 4.3 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "selection-manager",
"displayName": "Selection Manager",
"description": "Manage selected text of a file.",
"icon": "images/manage-selection.png",
"version": "0.0.22",
"license": "MIT",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:selection-manager.copy",
"onCommand:selection-manager.move",
"onCommand:selection-manager.search",
"onCommand:selection-manager.url-encode",
"onCommand:selection-manager.base64-encode",
"onCommand:selection-manager.url-decode",
"onCommand:selection-manager.base64-decode",
"onCommand:selection-manager.isolate",
"onCommand:selection-manager.lowercase",
"onCommand:selection-manager.uppercase",
"onCommand:selection-manager.camel-to-snake",
"onCommand:selection-manager.snake-to-camel",
"onCommand:selection-manager.kebab-to-camel",
"onCommand:selection-manager.camel-to-kebab",
"onCommand:selection-manager.kebab-to-snake",
"onCommand:selection-manager.snake-to-kebab",
"onCommand:selection-manager.length",
"onCommand:selection-manager.lorem-ipsum",
"onCommand:selection-manager.non-ascii",
"onCommand:selection-manager.reverse",
"onCommand:selection-manager.log"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "selection-manager.copy",
"title": "Copy Selection"
},
{
"command": "selection-manager.move",
"title": "Move Selection"
},
{
"command": "selection-manager.isolate",
"title": "Isolate Selection"
},
{
"command": "selection-manager.search",
"title": "Search Selection"
},
{
"command": "selection-manager.url-encode",
"title": "URL Encode Selection"
},
{
"command": "selection-manager.base64-encode",
"title": "Base64 Encode Selection"
},
{
"command": "selection-manager.url-decode",
"title": "URL Decode Selection"
},
{
"command": "selection-manager.base64-decode",
"title": "Base64 Decode Selection"
},
{
"command": "selection-manager.lowercase",
"title": "Lowercase Selection"
},
{
"command": "selection-manager.uppercase",
"title": "Uppercase Selection"
},
{
"command": "selection-manager.camel-to-snake",
"title": "Camel to Snake case Selection"
},
{
"command": "selection-manager.snake-to-camel",
"title": "Snake to Camel case Selection"
},
{
"command": "selection-manager.kebab-to-camel",
"title": "Kebab to Camel case Selection"
},
{
"command": "selection-manager.camel-to-kebab",
"title": "Camel to Kebab case Selection"
},
{
"command": "selection-manager.kebab-to-snake",
"title": "Kebab to Snake case Selection"
},
{
"command": "selection-manager.snake-to-kebab",
"title": "Snake to Kebab case Selection"
},
{
"command": "selection-manager.length",
"title": "Length of Selection"
},
{
"command": "selection-manager.lorem-ipsum",
"title": "Lorem Ipsum on Selection"
},
{
"command": "selection-manager.non-ascii",
"title": "Number of non ASCII Characters in Selection"
},
{
"command": "selection-manager.reverse",
"title": "Reverse Selection"
},
{
"command": "selection-manager.log",
"title": "Log Selection"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/theteladras/vscode-selection-manager.git"
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"deploy": "npm run compile && vsce publish"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.66.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@vscode/test-electron": "^2.1.3",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"ts-loader": "^9.2.8",
"typescript": "^4.5.5",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"publisher": "ManageTextSelection",
"dependencies": {
"lorem-ipsum": "^2.0.4"
}
}