This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 2.62 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
{
"name": "vscode-markuplint",
"displayName": "markuplint",
"description": "markuplint for VS Code",
"version": "3.0.0",
"publisher": "yusukehirao",
"license": "MIT",
"repository": "https://github.com/markuplint/vscode-markuplint.git",
"icon": "media/icon.png",
"galleryBanner": {
"color": "#1572eb",
"theme": "dark"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"activationEvents": [
"onLanguage:html",
"onLanguage:vue",
"onLanguage:jade",
"onLanguage:svelte",
"onLanguage:astro",
"onLanguage:nunjucks",
"onLanguage:liquid",
"onLanguage:handlebars",
"onLanguage:mustache",
"onLanguage:ejs",
"onLanguage:haml",
"onLanguage:jstl",
"onLanguage:php",
"onLanguage:smarty",
"onLanguage:ruby",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "markuplint configuration",
"properties": {
"markuplint.enable": {
"type": "boolean",
"description": "Control whether markuplint is enabled for HTML files or not.",
"scope": "language-overridable",
"default": true
},
"markuplint.debug": {
"type": "boolean",
"description": "Enable debug mode.",
"default": false
},
"markuplint.defaultConfig": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/main/config.schema.json",
"description": "It's the configuration specified if configuration files do not exist.",
"default": {
"extends": [
"markuplint:recommended"
]
}
}
}
},
"jsonValidation": [
{
"fileMatch": "**/{.markuplintrc,markuplintrc.json,markuplint.config.json,markuplint.json}",
"url": "https://raw.githubusercontent.com/markuplint/markuplint/main/config.schema.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
},
"devDependencies": {
"@types/node": "16",
"@types/semver": "^7.3.13",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"prettier": "^2.8.1",
"typescript": "4.9.4"
},
"dependencies": {
"@markuplint/ml-spec": "3",
"markuplint": "3",
"semver": "^7.3.8",
"vscode-languageclient": "^8.0.2",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.8"
}
}