-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 3.92 KB
/
Copy pathpackage.json
File metadata and controls
141 lines (141 loc) · 3.92 KB
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
{
"name": "vscode-chess",
"displayName": "VS Code Chess",
"description": "Monitors Chess.com Daily games and notifies you when it is your turn to move.",
"version": "0.13.0",
"publisher": "eunai",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/eunai/vscode-chess.git"
},
"bugs": {
"url": "https://github.com/eunai/vscode-chess/issues"
},
"homepage": "https://github.com/eunai/vscode-chess#readme",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"keywords": [
"chess",
"chess.com",
"correspondence",
"daily games",
"turn notification"
],
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#363856",
"theme": "dark"
},
"qna": false,
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "VS Code Chess",
"properties": {
"vscodeChess.username": {
"type": "string",
"default": "",
"scope": "application",
"description": "Your Chess.com username."
},
"vscodeChess.boardTheme": {
"type": "string",
"enum": [
"editor",
"classic"
],
"enumDescriptions": [
"Tint the board squares from your active VS Code color theme.",
"Use the classic board palette."
],
"default": "editor",
"scope": "window",
"description": "Color the chess board squares to match your active VS Code theme, or use the classic board palette. The chess pieces are never themed."
},
"vscodeChess.opponentCards": {
"type": "boolean",
"default": true,
"scope": "window",
"description": "Show a card of public context (title, country, Daily rating, total Daily games, member since) when you hover or keyboard-focus an opponent's name, plus a View Profile button under the open board. Turn off to disable all opponent lookups."
}
}
},
"commands": [
{
"command": "vscodeChess.openMostUrgent",
"title": "Open Most Urgent Daily Game",
"category": "Chess"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "vscodeChess",
"title": "Chess",
"icon": "assets/activitybar.svg"
}
]
},
"views": {
"vscodeChess": [
{
"type": "webview",
"id": "vscodeChess.boards",
"name": "Daily Games"
},
{
"id": "vscodeChess.newGames",
"name": "New Games",
"visibility": "hidden"
}
]
}
},
"scripts": {
"lint": "eslint .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit -p tsconfig.host.json && tsc --noEmit -p tsconfig.webview.json",
"test:unit": "mocha",
"pretest:integration": "npm run build && tsc -p tsconfig.test.json",
"test:integration": "vscode-test",
"test": "npm run test:unit && npm run test:integration",
"build": "node esbuild.js",
"vscode:prepublish": "node esbuild.js --minify",
"package": "vsce package --no-dependencies",
"publish": "vsce publish --no-dependencies"
},
"overrides": {
"serialize-javascript": "^7.0.5"
},
"devDependencies": {
"@total-typescript/tsconfig": "^1.0.4",
"@types/jsdom": "^28.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.0",
"@types/vscode": "1.90.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^3.0.0",
"@vscode/vsce": "^3.9.2",
"esbuild": "^0.28.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"jsdom": "^29.1.1",
"mocha": "^10.8.2",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"dependencies": {
"chess.js": "^1.4.0",
"chessground": "9.2.1"
}
}