-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 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
67
68
69
70
71
72
73
74
75
76
{
"name": "code-guid",
"displayName": "CodeGuid",
"description": "A simple extension that allows the creation of GUIDs (UUIDs) inline. Note that the GUIDs generated by this extension aren't cryptographically secure, so their use in production isn't recommended. They're great for testing or debugging, though.",
"license": "MIT",
"keywords": [
"uuid",
"guid",
"random"
],
"icon": "images/logo.png",
"version": "1.3.1",
"repository": {
"type": "git",
"url": "https://github.com/jammerware/code-guid"
},
"publisher": "jammerware",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:codeGuid.generateGuidToClipboard",
"onCommand:codeGuid.insertGuidAtCursor"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "codeGuid.generateGuidToClipboard",
"title": "CodeGuid: Copy GUID to clipboard"
},
{
"command": "codeGuid.insertGuidAtCursor",
"title": "CodeGuid: Insert GUID at cursor"
}
],
"configuration": {
"type": "object",
"title": "CodeGuid configuration",
"properties": {
"codeGuid.showNotificationWhenGuidGenerated": {
"type": "boolean",
"default": true,
"description": "Show a notification when a GUID is copied to your clipboard."
}
}
},
"keybindings": [
{
"command": "codeGuid.insertGuidAtCursor",
"key": "ctrl+;",
"mac": "ctrl+;"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^14.14.7",
"@types/vscode": "^1.51.0",
"mocha": "^10.2.0",
"typescript": "^4.0.5",
"vscode": "^1.1.37"
},
"dependencies": {
"copy-paste": "^1.3.0",
"vscode-test": "^1.4.1"
}
}