-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
174 lines (174 loc) · 4.82 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "tamagotchi",
"displayName": "Tamagotchi Clicker",
"description": "Welcome to the Tamagotchi VS-Code Extension, a fun and interactive game that brings the joy of raising Tamagotchi pets right into your favorite code editor.",
"version": "0.4.4",
"homepage": "https://github.com/Tzanou123/vscode_tamagotchi_extension",
"bugs": "https://github.com/Tzanou123/vscode_tamagotchi_extension/issues",
"publisher": "Tzanou",
"engines": {
"vscode": "^1.84.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Tzanou123/vscode_tamagotchi_extension"
},
"icon": "media/icon.png",
"license": "MIT",
"keywords": [
"tamagotchi",
"game",
"pet",
"fun",
"interactive",
"pet",
"monster",
"pokemon",
"creature",
"motivation",
"productivity",
"animal",
"friend",
"companion",
"cat",
"chicken",
"dog",
"pets",
"clippy",
"rubber duck"
],
"categories": [
"Other"
],
"activationEvents": [
"onView:explorer",
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"views": {
"explorer": [
{
"type": "webview",
"id": "tamagotchi_garden",
"name": "Tamagotchi",
"when": "tamagotchi.position == 'explorer'",
"icon": "media/dog.svg"
}
]
},
"menus": {
"view/title": [
{
"command": "tamagotchi.spawnRandomBoss",
"when": "view == tamagotchi_garden",
"group": "navigation@1"
},
{
"command": "tamagotchi.spawnBoss",
"when": "view == tamagotchi_garden",
"group": "navigation@2"
},
{
"command": "tamagotchi.resetState",
"when": "view == tamagotchi_garden",
"group": "navigation@3"
}
]
},
"commands": [
{
"command": "tamagotchi.openGarden",
"title": "Tamagotchi: Open Garden"
},
{
"command": "tamagotchi.spawnRandomBoss",
"title": "Tamagotchi: Spawn Random Boss",
"category": "tamagotchi",
"icon": {
"dark": "media/icon/dark-spawn_random_boss.svg",
"light": "media/icon/light-spawn_random_boss.svg"
}
},
{
"command": "tamagotchi.spawnBoss",
"title": "Tamagotchi: Spawn Boss",
"category": "tamagotchi",
"icon": {
"dark": "media/icon/dark-spawn_boss.svg",
"light": "media/icon/light-spawn_boss.svg"
}
},
{
"command": "tamagotchi.updateKeystrokeCount",
"title": "Tamagotchi: Update Keystroke Count"
},
{
"command": "tamagotchi.documentOpened",
"title": "Tamagotchi: Document Opened"
},
{
"command": "tamagotchi.resetState",
"title": "Reset the game",
"category": "tamagotchi",
"icon": {
"dark": "media/icon/dark-reset.svg",
"light": "media/icon/light-reset.svg"
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"vscode:publish:minor": "vsce publish minor",
"vscode:publish:major": "vsce publish major",
"vscode:publish:patch": "vsce publish patch",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"publish:patch": "npm version patch && git push && git push origin --tags",
"publish:minor": "npm version minor && git push && git push origin --tags",
"publish:major": "npm version major && git push && git push origin --tags",
"changelog": "git cliff -o CHANGELOG.md"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jsdom": "^21.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vscode/l10n-dev": "^0.0.29",
"@vscode/test-web": "^0.0.31",
"eslint": "^8.18.0",
"eslint-plugin-unused-imports": "^2.0.0",
"glob": "^8.0.3",
"gulp": "^4.0.2",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"process": "^0.11.10",
"ts-loader": "^9.5.0",
"typescript": "^4.7.4",
"typescript-eslint": "^0.0.1-alpha.0",
"url-loader": "^4.1.1",
"vscode-test": "^1.4.0",
"webpack": "5.76.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@pixi/particle-emitter": "^5.0.8",
"@vscode/l10n": "^0.0.10",
"path": "^0.12.7",
"pixi.js": "^7.3.2"
}
}