-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.26 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
{
"name": "vscode-games",
"displayName": "Games",
"publisher": "yiwwan",
"description": "Tiny games for break time!",
"version": "0.0.4",
"license": "0BSD",
"repository": "https://github.com/yhvicey/vscode-games",
"keywords": [
"game",
"games",
"relax",
"fun",
"dino"
],
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:games.startDino"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "games.startDino",
"title": "Start Dino (Chrome Easter Egg)",
"category": "Games"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^10.12.21",
"css-loader": "^2.1.1",
"raw-loader": "^2.0.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"url-loader": "^1.1.2",
"vsce": "^1.59.0",
"vscode": "^1.1.28",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
},
"dependencies": {}
}