-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.67 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
{
"name": "vscode-extension-wikiparser",
"version": "1.0.6",
"description": "Language server extension for MediaWiki Wikitext that supports linting, autocomplete, and more.",
"displayName": "WikiParser Language Server",
"categories": [
"Linters",
"Programming Languages"
],
"keywords": [
"mediawiki",
"wikitext",
"linter"
],
"homepage": "https://github.com/bhsd-harry/vscode-extension-wikiparser/",
"bugs": {
"url": "https://github.com/bhsd-harry/vscode-extension-wikiparser/issues"
},
"qna": "https://github.com/bhsd-harry/vscode-extension-wikiparser/issues",
"license": "GPL-3.0",
"author": "Bhsd",
"publisher": "Bhsd",
"repository": {
"type": "git",
"url": "git+https://github.com/bhsd-harry/vscode-extension-wikiparser.git"
},
"contributes": {
"configuration": {
"type": "object",
"title": "WikiParser Language Server",
"properties": {
"wikiparser.lint": {
"type": "boolean",
"default": true,
"description": "Enable linting for Wikitext files."
},
"wikiparser.articlePath": {
"type": "string",
"default": "",
"markdownDescription": "The global constant `wgArticlePath` of the wiki site (e.g. `https://en.wikipedia.org/wiki/` or `https://en.wikipedia.org/wiki/$1`)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc --project server/tsconfig.json",
"test": "mocha",
"lint:ts": "tsc --noEmit --project server/tsconfig.json && eslint --cache .",
"lint:json": "v8r -s server/src/data/schema/info.json server/src/data/*.json",
"lint": "npm run lint:ts && npm run lint:json"
},
"dependencies": {
"@bhsd/common": "^0.5.0",
"color-rgba": "^3.0.0",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"wikilint": "^2.14.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.11.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/color-rgba": "^2.1.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vscode/vsce": "^3.2.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-plugin-es-x": "^8.4.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-json-es": "^1.6.0",
"eslint-plugin-markdown": "4.0.1",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-unicorn": "^56.0.1",
"http-server": "^14.1.0",
"mocha": "^10.8.2",
"stylelint": "^16.11.0",
"stylelint-config-recommended": "^14.0.0",
"typescript": "^5.7.2",
"v8r": "^4.2.0"
},
"engines": {
"node": ">=18.12.0",
"vscode": "^1.95.2"
}
}