-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.65 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.65 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
{
"name": "boj-tester",
"publisher": "koomin1227",
"displayName": "BOJ Tester",
"description": "VS Code 안에서 백준 문제보기, 테스트 케이스 실행등 다양한 기능을 제공",
"icon": "media/default_icon.png",
"version": "1.1.1",
"engines": {
"vscode": "^1.95.0"
},
"repository": {
"type": "git",
"url": "https://github.com/koomin1227/BOJ-Tester"
},
"qna": "https://github.com/koomin1227/BOJ-Tester/issues",
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"menus": {
"view/title": [
{
"when": "view == bojTester",
"group": "navigation",
"command": "boj-tester.openSettings"
}
]
},
"commands": [
{
"command": "boj-tester.openProblemInfo",
"title": "문제창을 엽니다."
},
{
"command": "boj-tester.createProblem",
"title": "문제 파일을 생성합니다."
},
{
"command": "boj-tester.openFileAndProblemInfo",
"title": "파일을 열고, 문제창을 엽니다."
},
{
"command": "boj-tester.openSettings",
"title": "설정창을 엽니다.",
"icon": "$(gear)"
}
],
"views": {
"bojTester": [
{
"type": "webview",
"id": "bojTester",
"name": "BOJ Tester"
},
{
"id": "bojTester.tree",
"name": "문제 파일 탐색기"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "bojTester",
"title": "BOJ Tester",
"icon": "media/icon.png"
}
]
},
"configuration": {
"type": "object",
"title": "BOJ Tester",
"properties": {
"BOJ-Tester.defaultLanguage": {
"type": "string",
"default": "py",
"enum": [
"py",
"java",
"js",
"cpp",
"c",
"kt",
"swift",
"go",
"rs"
],
"description": "파일 생성 시 사용할 언어의 확장자 명을 입력해주세요."
},
"BOJ-Tester.defaultPath": {
"type": "string",
"description": "파일 생성 시 저장될 경로를 입력해주세요. 입력하지 않을 시 열려있는 워크스페이스의 루트 경로에 저장됩니다."
},
"BOJ-Tester.customCommandOption.cpp": {
"type": "string",
"default": "",
"description": "C++ 파일(.cpp)을 컴파일할 때 사용할 커스텀 옵션을 입력하세요.\n예: -std=c++17\n설정을 비워두면 기본 'g++' 명령어가 사용됩니다."
},
"BOJ-Tester.customCommandOption.c": {
"type": "string",
"default": "",
"description": "C 파일(.c)을 컴파일할 때 사용할 커스텀 옵션을 입력하세요.\n예: -std=c11\n설정을 비워두면 기본 'gcc' 명령어가 사용됩니다."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.16.0",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.9",
"cheerio": "^1.0.0"
}
}