-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (98 loc) · 2.74 KB
/
package.json
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
{
"name": "mark-my-words",
"displayName": "mark-my-words",
"description": "Easily publish your markdown directly from vscode",
"version": "0.0.4",
"icon": "assets/icon.png",
"engines": {
"vscode": "^1.95.1"
},
"repository": {
"type": "git",
"url": "https://github.com/tigawanna/mark-my-words"
},
"publisher": "denniskinuthia",
"license": "MIT",
"categories": [
"Notebooks"
],
"activationEvents": [
"onWebviewPanel:markMyWords"
],
"main": "dist/extension/index.js",
"contributes": {
"commands": [
{
"command": "markMyWords.publishSelected",
"title": "Publish Selected",
"category,": "Mark My Words"
}
],
"configuration": {
"title": "Mark My Words",
"properties": {
"markMyWords.publishTargets": {
"type": "array",
"default": [],
"description": "Configured publish targets"
},
"markMyWords.onePublishTargets": {
"type": "object",
"default": {},
"description": "One configured publish target"
},
"markMyWords.maxHistorySize": {
"type": "number",
"default": 50,
"description": "Maximum number of selections to keep in history"
},
"markMyWords.autoOpen": {
"type": "boolean",
"default": false,
"description": "Automatically open panel when text is selected"
}
}
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"package": " vsce package -o mark-my-words-latest.vsix --yarn",
"deploy:local": "yarn package && code --install-extension mark-my-words-latest.vsix --force",
"deploy:version": " code --install-extension mark-my-words-0.0.4.vsix --force",
"preview": "vite preview"
},
"dependencies": {
"@vscode-elements/elements": "^1.7.1",
"@vscode/codicons": "^0.0.36",
"preact": "^10.24.3",
"zustand": "^5.0.0"
},
"devDependencies": {
"@githubocto/tailwind-vscode": "^1.0.5",
"@preact/preset-vite": "^2.9.1",
"@tomjs/tsconfig": "^1.7.1",
"@tomjs/vite-plugin-vscode": "^3.0.0",
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"@types/vscode": "^1.94.0",
"@types/vscode-webview": "^1.57.5",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vscode/test-cli": "^0.0.10",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "5.4.8",
"vite-tsconfig-paths": "^5.0.1",
"@vscode/test-electron": "^2.4.1"
},
"vsce": {
"yarn": true
}
}