-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
122 lines (122 loc) · 2.94 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
{
"name": "type-challenges",
"displayName": "Type Challenges",
"description": "Take Type Challenges in VS Code",
"version": "1.15.0",
"publisher": "YRM",
"license": "MIT",
"icon": "resources/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/yrming/vscode-type-challenges"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:typeChallenges.questions"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "typeChallenges",
"title": "Type Challenges",
"icon": "resources/logo.svg"
}
]
},
"views": {
"typeChallenges": [
{
"id": "typeChallenges.questions",
"name": "Type Challenges"
}
]
},
"menus": {
"view/title": [
{
"command": "typeChallenges.openFolder",
"group": "navigation",
"when": "view == typeChallenges.questions"
},
{
"command": "typeChallenges.refresh",
"group": "navigation",
"when": "view == typeChallenges.questions"
}
]
},
"commands": [
{
"command": "typeChallenges.openFolder",
"title": "Open Folder",
"icon": "$(folder)"
},
{
"command": "typeChallenges.refresh",
"title": "Refresh",
"icon": "$(refresh)"
}
],
"configuration": [
{
"title": "Type Challenges",
"type": "object",
"properties": {
"typeChallenges.workspaceFolder": {
"type": "string",
"scope": "application",
"description": "The path of the workspace folder to save Type Challenges",
"default": ""
},
"typeChallenges.defaultLanguage": {
"type": "string",
"enum": [
"zh",
"ja",
"ko",
"en"
],
"description": "The default language of Type Challenge"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"prettier": "prettier --write ."
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^20.10.4",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vscode/test-electron": "^2.1.2",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"prettier": "^2.6.1",
"typescript": "^5.3.3"
},
"dependencies": {
"fs-extra": "^11.2.0",
"highlight.js": "^11.9.0",
"js-yaml": "^4.1.0",
"marked": "^11.0.1"
}
}