forked from koomin1227/BOJ-Tester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 5.3 KB
/
package.json
File metadata and controls
147 lines (147 loc) · 5.3 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
142
143
144
145
146
147
{
"name": "boj-tester",
"publisher": "koomin1227",
"displayName": "BOJ Tester",
"description": "VS Code 안에서 백준 문제보기, 테스트 케이스 실행등 다양한 기능을 제공",
"icon": "media/default_icon.png",
"version": "1.0.10",
"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.openSettings",
"title": "설정창을 엽니다.",
"icon": "$(gear)"
}
],
"views": {
"bojTester": [
{
"type": "webview",
"id": "bojTester",
"name": "BOJ Tester"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "bojTester",
"title": "BOJ Tester",
"icon": "media/icon.png"
}
]
},
"configuration": {
"type": "object",
"title": "BOJ Tester",
"properties": {
"BOJ-Tester.defaultLanguage": {
"type": "string",
"description": "파일 생성 시 사용할 언어의 확장자 명을 입력해주세요.\n[지원 언어] py, java, js, cpp, c, kt, swift, go"
},
"BOJ-Tester.defaultPath": {
"type": "string",
"description": "파일 생성 시 저장될 경로를 입력해주세요. 입력하지 않을 시 열려있는 워크스페이스의 루트 경로에 저장됩니다."
},
"BOJ-Tester.useCustomCommand": {
"type": "boolean",
"default": false,
"description": "직접 입력한 컴파일 명령어로 컴파일하고자 할 때 체크해주세요"
},
"BOJ-Tester.customCommandOption.py": {
"type": "string",
"default": "",
"description": "Python 파일(.py)을 실행할 때 사용할 커스텀 옵션을 입력하세요.\n예: -O\n설정을 비워두면 기본 'python' 명령어가 사용됩니다."
},
"BOJ-Tester.customCommandOption.java": {
"type": "string",
"default": "",
"description": "Java 파일(.java)을 컴파일할 때 사용할 커스텀 옵션을 입력하세요.\n예: -cp .:lib/*\n설정을 비워두면 기본 'javac' 명령어가 사용됩니다."
},
"BOJ-Tester.customCommandOption.js": {
"type": "string",
"default": "",
"description": "JavaScript 파일(.js)을 실행할 때 사용할 커스텀 옵션을 입력하세요.\n예: --experimental-modules\n설정을 비워두면 기본 'node' 명령어가 사용됩니다."
},
"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' 명령어가 사용됩니다."
},
"BOJ-Tester.customCommandOption.kt": {
"type": "string",
"default": "",
"description": "Kotlin 파일(.kt)을 컴파일할 때 사용할 커스텀 옵션을 입력하세요.\n예: -jvm-target 1.8\n설정을 비워두면 기본 'kotlinc' 명령어가 사용됩니다."
},
"BOJ-Tester.customCommandOption.swift": {
"type": "string",
"default": "",
"description": "Swift 파일(.swift)을 컴파일할 때 사용할 커스텀 옵션을 입력하세요.\n예: -swift-version 5\n설정을 비워두면 기본 'swift' 명령어가 사용됩니다."
},
"BOJ-Tester.customCommandOption.go": {
"type": "string",
"default": "",
"description": "Go 파일(.go)을 실행할 때 사용할 커스텀 옵션을 입력하세요.\n예: -race\n설정을 비워두면 기본 'go run' 명령어가 사용됩니다."
}
}
}
},
"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"
}
}