-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (90 loc) · 2.66 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
{
"name": "kitty-time",
"displayName": "Kitty Time =(^● ⋏ ●^)= ෆ",
"description": "Stressed after coding for hours? Need a break? Perhaps an inspiration? Something to calm your nerves after almost pushing that fatal git commit? It's Kitty Time! =(^● ⋏ ●^)= ෆ",
"version": "0.5.2",
"publisher": "QzSG",
"author": {
"name": "Adrian",
"url": "https://qz.sg"
},
"repository": {
"type": "git",
"url": "https://github.com/QzSG/kitty-time"
},
"bugs": {
"url": "https://github.com/QzSG/kitty-time/issues"
},
"icon": "image/logo-128x128.png",
"galleryBanner": {
"color": "#002f3a",
"theme": "dark"
},
"keywords": [
"cat",
"kitten",
"neko",
"destress",
"cute"
],
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "kittyTime.run",
"title": "Kitty Time =(^● ⋏ ●^)= ෆ"
},
{
"command": "kittyTime.getApiKey",
"title": "=(^● ⋏ ●^)= ෆ : Enter TheCatApi key to unlock more cats (or leave blank for less)"
}
],
"configuration": {
"title": "Kitty Time Configuration",
"properties": {
"kittyTime.apiKey": {
"title": "Api Key from Cat Api",
"description": "Get api key from http://thecatapi.com/api-key-registration.html and paste here , unlocks more cats",
"type": "string"
},
"kittyTime.imageType": {
"title": "Image Type to show (Static / Animated / Both)",
"description": "Animated = gifs :D , Both = Random",
"type": "string",
"enum": [
"animated",
"static",
"both"
],
"default": "animated"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/xml2js": "^0.4.3",
"@vscode/test-electron": "^2.3.9",
"@types/node": "^16.18.34",
"@types/vscode": "^1.73.0",
"typescript": "^5.3.2"
},
"dependencies": {
"axios": "^0.26.1",
"xml2js": "^0.5.0"
}
}