-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.04 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
{
"name": "chatview",
"displayName": "ChatView",
"description": "Lightweight chat-format markdown viewer for VS Code",
"version": "0.4.0",
"publisher": "keides2",
"repository": {
"type": "git",
"url": "https://github.com/keides2/chatview.git"
},
"contributes": {
"configuration": {
"type": "object",
"title": "ChatView",
"properties": {
"chatPreview.defaultFolder": {
"type": "string",
"default": "workspace",
"description": "保存ダイアログの既定フォルダ。'workspace'(ワークスペースのルート)、'home'(ユーザーホーム)、または絶対パスを指定できます。"
}
}
},
"commands": [
{
"command": "chatPreview.showPreview",
"title": "ChatView: Show Preview | プレビュー表示"
},
{
"command": "chatPreview.exportImage",
"title": "ChatView: Export as SVG | SVGエクスポート"
}
]
},
"engines": {
"vscode": "^1.103.0"
},
"activationEvents": [
"onCommand:chatPreview.showPreview",
"onCommand:chatPreview.exportImage"
],
"license": "MIT",
"categories": [
"Other"
],
"main": "./dist/extension.js",
"icon": "media/icons/ChatView-Enterprise-icon-128.png",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --mode development",
"package": "webpack --mode production --devtool hidden-source-map",
"watch": "webpack --watch --mode development",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.103.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.34.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"dependencies": {}
}