forked from DonJayamanne/createidsvscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "createuniqueid",
"displayName": "Create Unique Ids",
"description": "Create Unique Ids, UUID/GUID or random numbers, and copy to clipboard or insert into editor.",
"version": "0.0.4",
"publisher": "danlogan",
"license": "SEE LICENSE IN LICENSE or README.MD",
"homepage": "https://github.com/danlogan9/createidsvscode/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/danlogan9/createidsvscode/createidsvscode.git"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^0.10.1"
},
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.generateuniqueid"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.generateuniqueid",
"title": "Generate Unique Id"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"dependencies": {
"copy-paste": "^1.1.4",
"random-js": "^1.0.8",
"shortid": "^2.2.4",
"uuid": "^2.0.1"
}
}