-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.08 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "vertical-code-jumper",
"displayName": "Vertical Code Jumper",
"description": "An infinite vertical jumping game in your code.",
"version": "0.0.13",
"publisher": "andrei-ignatev",
"license": "MIT",
"icon": "resources/icon.png",
"keywords": [
"platformer",
"game"
],
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/a-ignatev/vertical-code-jumper.git"
},
"contributes": {
"commands": [
{
"command": "vertical-code-jumper.restartGame",
"title": "Restart Game",
"icon": "$(refresh)"
},
{
"command": "vertical-code-jumper.enableMusic",
"title": "Enable music",
"icon": "$(mute)"
},
{
"command": "vertical-code-jumper.disableMusic",
"title": "Disable music",
"icon": "$(unmute)"
}
],
"views": {
"explorer": [
{
"type": "webview",
"id": "vertical-code-jumper.verticalCodeJumperView",
"name": "Vertical Code Jumper"
}
]
},
"menus": {
"view/title": [
{
"command": "vertical-code-jumper.enableMusic",
"when": "view == vertical-code-jumper.verticalCodeJumperView && !config.vertical-code-jumper.enableMusic",
"group": "navigation"
},
{
"command": "vertical-code-jumper.disableMusic",
"when": "view == vertical-code-jumper.verticalCodeJumperView && config.vertical-code-jumper.enableMusic",
"group": "navigation"
},
{
"command": "vertical-code-jumper.restartGame",
"when": "view == vertical-code-jumper.verticalCodeJumperView",
"group": "navigation"
}
]
},
"configuration": {
"title": "Vertical Code Jumper",
"properties": {
"vertical-code-jumper.enableMusic": {
"type": "boolean",
"default": true,
"description": "Play in-game music."
}
}
}
},
"scripts": {
"build:web": "webpack --config webpack.web.ts",
"build:web:prod": "webpack --mode production --devtool hidden-source-map --config webpack.web.ts",
"build:extension": "webpack --config webpack.extension.ts",
"build:extension:prod": "webpack --mode production --devtool hidden-source-map --config webpack.extension.ts",
"build:game": "webpack --config webpack.game.ts",
"build:game:prod": "webpack --mode production --devtool hidden-source-map --config webpack.game.ts",
"build:extension-app": "npm-run-all build:game build:extension",
"build:extension-app:prod": "npm-run-all build:game:prod build:extension:prod",
"build:web-app": "npm-run-all build:game build:web",
"build:web-app:prod": "npm-run-all build:game:prod build:web:prod",
"vscode:prepublish": "npm run package",
"compile": "npm run build:extension-app",
"watch": "npm run build:extension-app --watch",
"compile:web": "npm run build:web-app",
"watch:web": "npm run build:web-app --watch",
"package": "npm run build:extension-app:prod",
"package:web": "npm run build:web-app:prod",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.59",
"@types/uuid": "^9.0.6",
"@types/vscode": "^1.83.0",
"@types/vscode-webview": "^1.57.3",
"@types/webpack": "^5.28.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vscode/test-electron": "^2.3.4",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.47.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"glob": "^10.3.3",
"html-loader": "^4.2.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"replace-in-file-webpack-plugin": "^1.0.6",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"uuid": "^9.0.1"
}
}