-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.44 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.44 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
{
"name": "ddanzit",
"displayName": "ddanzit",
"description": "회사에서 딴짓하기",
"publisher": "Hyoungsooo",
"version": "0.0.3",
"engines": {
"vscode": ">=1.97.0"
},
"repository": {
"type": "git",
"url": "https://github.com/HyoungSooo/ddanzit.git"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "dcinsideCrawler",
"title": "DC Inside",
"icon": "resources/dc-icon.svg"
}
]
},
"views": {
"dcinsideCrawler": [
{
"id": "dcinsideExplorer",
"name": "DC Inside Explorer"
}
]
},
"commands": [
{
"command": "dcinsideCrawler.searchUnified",
"title": "갤러리 검색"
},
{
"command": "dcinsideCrawler.openPost",
"title": "게시글 열기"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.97.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.19.0"
},
"dependencies": {
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"express": "^4.21.2",
"html-to-markdown": "^1.0.0",
"qs": "^6.14.0",
"turndown": "^7.2.0"
}
}