-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.12 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
{
"publisher": "xxxDeveloper",
"name": "layered-comments",
"displayName": "Layered Comments",
"version": "0.1.1",
"description": "Layered Comments for VS Code",
"homepage": "https://github.com/ohxxx/vscode-layered-comments#readme",
"repository": {
"type": "git",
"url": "https://github.com/ohxxx/vscode-layered-comments"
},
"bugs": {
"url": "https://github.com/ohxxx/vscode-layered-comments/issues"
},
"keywords": [
"layered",
"comments",
"annotate",
"single comment",
"multiline comment"
],
"sideEffects": false,
"main": "./dist/extension.js",
"icon": "assets/logo.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.66.2"
},
"activationEvents": [
"onCommand:layered-comments.create"
],
"contributes": {
"commands": [
{
"command": "layered-comments.create",
"title": "create"
}
],
"keybindings": [
{
"command": "layered-comments.create",
"key": "ctrl+alt+/",
"mac": "ctrl+cmd+/"
}
],
"configuration": {
"properties": {
"layeredComments.style": {
"type": "object",
"properties": {
"fillSym": {
"type": "string",
"default": "*",
"description": "Fill symbol for layered comments"
},
"width": {
"type": "number",
"default": 40,
"description": "Width of the layered comments"
}
}
}
}
}
},
"scripts": {
"dev": "rm -rf dist && tsup --watch",
"build": "tsup",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"publish": "vsce publish --no-dependencies --allow-star-activation",
"pack": "vsce package --no-dependencies --allow-star-activation"
},
"devDependencies": {
"@ohxxx/eslint-config": "^0.0.4",
"@types/node": "^17.0.45",
"@types/vscode": "^1.66.0",
"eslint": "^8.31.0",
"tsup": "^5.12.9",
"typescript": "^4.9.4",
"vite": "^2.9.15",
"vitest": "^0.10.5",
"vsce": "^2.7.0"
}
}