-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.91 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.91 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
{
"name": "slidev-copilot",
"displayName": "Slidev Copilot",
"description": "Generate a Slidev presentation with VSCode Chat",
"version": "0.1.5",
"publisher": "robothy",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/robothy/slidev-copilot"
},
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Other",
"Chat",
"AI"
],
"activationEvents": [
"onStartupFinished",
"onView:chat"
],
"main": "./dist/extension.js",
"type": "commonjs",
"contributes": {
"chatParticipants": [
{
"id": "slidev-copilot",
"fullName": "Slidev Copilot",
"name": "slidev",
"description": "Generate a Slidev presentation with VSCode Chat",
"isSticky": true
}
],
"configuration": {
"title": "Slidev Copilot",
"properties": {
"slidev-copilot.logLevel": {
"type": "string",
"default": "warning",
"enum": [
"trace",
"debug",
"info",
"warning",
"error"
],
"enumDescriptions": [
"Trace level - most verbose logging",
"Debug level - detailed information for debugging",
"Info level - general information about execution flow",
"Warning level (default) - possible issues or problems",
"Error level - only errors"
],
"description": "Controls the verbosity of logs in the Slidev Copilot output panel"
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production --config webpack.config.cjs",
"compile": "webpack --mode development --config webpack.config.cjs",
"compile:test": "tsc -p ./tsconfig.test.json",
"watch": "webpack --watch --mode development --config webpack.config.cjs",
"webpack": "webpack --mode production --config webpack.config.cjs",
"pretest": "npm run compile:test",
"lint": "eslint src --fix --ext ts",
"test": "vitest run",
"test:watch": "vitest",
"prepare-template": "node scripts/prepare-template.js",
"prepackage": "npm run prepare-template",
"package": "vsce package --out out"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/glob": "^8.1.0",
"@types/node": "20.2.5",
"@types/react": "^19.1.1",
"@types/vscode": "^1.92.0",
"@vscode/test-electron": "^2.3.2",
"eslint": "^9.25.0",
"glob": "^8.1.0",
"react": "^19.1.0",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typescript": "^5.1.3",
"typescript-eslint": "^8.30.1",
"vitest": "^1.2.1",
"webpack": "^5.99.5",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@slidev/cli": "^51.5.0",
"@vscode/prompt-tsx": "^0.3.0-alpha.23",
"@vscode/vsce": "^3.3.2",
"playwright-chromium": "^1.52.0"
},
"bundledDependencies": [
"@vscode/prompt-tsx",
"@slidev/cli",
"playwright-chromium"
]
}