-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.41 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.41 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
{
"author": {
"name": "Bryan A. Jones"
},
"categories": [
"Other"
],
"description": "This embeds the CodeChat Editor in the Visual Studio Code Editor.",
"displayName": "CodeChat Editor",
"engines": {
"vscode": "^1.61.0"
},
"extensionKind": [
"workspace"
],
"homepage": "https://codechat-editor.onrender.com/fw/fsb/opt/render/project/src/README.md",
"keywords": [
"literate programming",
"CodeChat Editor",
"Visual Studio Code extension"
],
"license": "GPL-3.0-only",
"main": "out/extension.js",
"napi": {
"binaryName": "codechat-editor-client",
"targets": [
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin"
]
},
"name": "codechat-editor-client",
"prettier": {
"tabWidth": 4,
"endOfLine": "auto"
},
"publisher": "CodeChat",
"repository": {
"type": "git",
"url": "https://github.com/bjones1/CodeChat_Editor"
},
"version": "0.1.43",
"activationEvents": [
"onCommand:extension.codeChatEditorActivate",
"onCommand:extension.codeChatEditorDeactivate"
],
"contributes": {
"configuration": {
"title": "CodeChat Editor",
"properties": {
"CodeChatEditor.Server.ClientLocation": {
"type": "string",
"default": "html",
"enum": [
"html",
"browser"
],
"enumDescriptions": [
"A panel in Visual Studio Code",
"In the default external web browser"
],
"markdownDescription": "Select the location of the CodeChat Editor Client. After changing this value, you **must** close then restart the CodeChat Editor extension."
}
}
},
"commands": [
{
"command": "extension.codeChatEditorActivate",
"title": "Enable the CodeChat Editor"
},
{
"command": "extension.codeChatEditorDeactivate",
"title": "Disable the CodeChat Editor"
}
]
},
"dependencies": {
"escape-html": "^1.0.3"
},
"devDependencies": {
"@emnapi/core": "^1.7.1",
"@emnapi/runtime": "^1.7.1",
"@napi-rs/cli": "^3.5.0",
"@tybys/wasm-util": "^0.10.1",
"@types/escape-html": "^1.0.4",
"@types/node": "^24.10.1",
"@types/vscode": "1.61.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vscode/vsce": "^3.7.1",
"chalk": "^5.6.2",
"esbuild": "^0.27.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"npm-run-all2": "^8.0.4",
"ovsx": "^0.10.7",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
},
"scripts": {
"compile": "cargo run --manifest-path=../../builder/Cargo.toml ext-build",
"vscode:prepublish": "cargo run --manifest-path=../../builder/Cargo.toml ext-build --dist"
}
}