-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.47 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "stenography",
"displayName": "Stenography",
"icon": "s-logo.png",
"author": {
"name": "Stenography",
"url": "https://stenography.dev/"
},
"publisher": "stenography",
"repository": {
"type": "git",
"url": "https://github.com/StenographyDev/autopilot-vsc"
},
"description": "Document entire code files. Automatically.",
"version": "1.2.2",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:stenography.autopilot",
"onCommand:stenography.toggleCodeLens",
"onCommand:stenography.autopilot-dryrun",
"onCommand:stenography.setKey",
"onCommand:stenography.resetCache",
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "stenography.setKey",
"title": "Set Stenography API Key"
},
{
"command": "stenography.autopilot",
"title": "Stenography Autopilot"
},
{
"command": "stenography.autopilot-dryrun",
"title": "Stenography Autopilot - Dry Run"
},
{
"command": "stenography.toggleCodeLens",
"title": "Toggle Stenography Code Lens"
},
{
"command": "stenography.resetCache",
"title": "Reset Stenography Cache"
}
],
"configuration": [
{
"title": "Stenography",
"description": "Configure Stenography Autopilot",
"order": 1,
"properties": {
"stenography.autopilotSettings": {
"type": "object",
"description": "Autopilot Settings",
"properties": {
"zeroCol": {
"type": "boolean",
"description": "Place comments at column zero or at the start of the explanation character"
}
},
"additionalProperties": false,
"default": {
"zeroCol": false
}
},
"stenography.codeLensMode": {
"type": "boolean",
"default": true,
"description": "Enable CodeLens mode."
},
"stenography.generatedBy": {
"type": "boolean",
"default": true,
"description": "Toggle Generated By Stenography string."
},
"stenography.apiKey": {
"type": "string",
"description": "Set your API Key",
"editPresentation": "singlelineText"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p -w . --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/lodash": "^4.14.177",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.61.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vscode/test-electron": "^1.6.2",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"axios": "^0.24.0",
"lodash": "^4.17.21",
"say": "^0.16.0"
}
}