-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.73 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
{
"name": "justforlaughs",
"displayName": "Just For Laughs",
"publisher": "JayantNavrange",
"description": "A slice of fun from reddit",
"version": "0.0.2",
"engines": {
"vscode": "^1.75.0"
},
"author": {
"name": "Jayant Navrange",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/jayant-navrange-238aa5138/"
},
"license": "MIT",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/jayantur13/just-for-laughs-vsc-extension.git"
},
"homepage": "https://github.com/jayantur13/just-for-laughs-vsc-extension#readme",
"bugs": {
"url": "https://github.com/jayantur13/just-for-laughs-vsc-extension/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/jayantur13"
},
"keywords": [
"vscode-extension",
"extension",
"vsc-extension",
"memes",
"jokes",
"reddit",
"subreddit"
],
"preview": false,
"galleryBanner": {
"color": "#41205f",
"theme": "dark"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:justforlaughs.get.meme"
],
"main": "main/extension.js",
"contributes": {
"configuration": {
"title": "Just For Laughs",
"properties": {
"justforlaughs.ext.subredditURL": {
"type": "string",
"scope": "window",
"default": "https://www.reddit.com/r/memes/new.json",
"markdownDescription": "Set a custom subreddit url and make sure that it has json data (images and gifs). Refer [readme](https://github.com/jayantur13/just-for-laughs-vsc-extension) for example. Then restart extension using Developer: Reload Window from Command Palette"
}
}
},
"commands": [
{
"command": "justforlaughs.ext.getmeme",
"title": "Just For Laughs: Get Meme"
},
{
"command": "justforlaughs.ext.getsetURL",
"title": "Just For Laughs: Get current URL"
},
{
"command": "justforlaughs.ext.setmyURL",
"title": "Just For Laughs: Set subreddit URL"
}
],
"keybindings": [
{
"command": "justforlaughs.ext.getmeme",
"key": "Ctrl+P",
"win": "Ctrl+P",
"mac": "Ctrl+P"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"test-coverage": "nyc --reporter=html --reporter=text mocha"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "18.14.0",
"@types/vscode": "^1.75.1",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.3"
}
}