-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.48 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
{
"name": "vscode-qtdoc",
"displayName": "Qt Documentation",
"author": {
"name": "Daniel Vrátil",
"email": "[email protected]"
},
"license": "MIT",
"icon": "docs/icon.png",
"publisher": "dvratil",
"description": "Display Qt documentation for types and functions in the editor",
"keywords": [
"qt",
"documentation",
"assistant",
"qtdoc"
],
"version": "0.1.2",
"engines": {
"vscode": "^1.90.0"
},
"repository": {
"type": "git",
"url": "https://github.com/danvratil/vscode-qtdoc"
},
"bugs": {
"url": "https://github.com/danvratil/vscode-qtdoc/issues",
"email": "[email protected]"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:cpp"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": [
{
"id": "qtdoc",
"title": "Qt Documentation",
"properties": {
"qtdoc.paths": {
"type": "array",
"default": [],
"description": "Paths to Qt documentation (directories containing QCH files). When empty, the extension will try to search common known locations, although that only works reliably on Linux."
}
}
}
],
"commands": [
{
"command": "qtdoc.reindex",
"title": "Rescan Qt Documentation"
}
]
},
"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",
"test": "vscode-test"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/collections": "^5.1.5",
"@types/mocha": "^10.0.9",
"@types/node": "20.15.0",
"@types/sql.js": "^1.4.9",
"@types/vscode": "^1.94.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.14.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"collections": "^5.1.13",
"node-html-markdown": "^1.3.0",
"node-html-parser": "^6.1.13",
"sql.js": "^1.12.0",
"string-hash-64": "^1.0.3"
}
}