-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.69 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.69 KB
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
{
"name": "xquery-formatter",
"displayName": "Pretty XQuery",
"description": "This extension will format the XQuery and XML code.",
"version": "0.0.1",
"icon": "media/Pretty-Xquery.png",
"publisher": "Harshit Gupta",
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/harshitg123/Preety-Xquery"
},
"baseContentUrl": "https://none",
"baseImagesUrl": "https://github.com/harshitg123/Preety-Xquery/tree/main/media",
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"languages": [
{
"id": "xquery",
"aliases": [
"XQuery",
"xq",
"XML",
"xml"
],
"extensions": [
".xq",
".xquery",
".xml"
],
"configuration": "./language-configuration.json"
}
],
"commands": [
{
"command": "xquery-formatter.formatXquery",
"title": "Prettify XQuery"
}
],
"configuration": {
"title": "Your Extension Configuration",
"properties": {
"xquery-formatter.enableFeature": {
"type": "boolean",
"default": true,
"description": "Enable or disable a specific feature."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.71.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"xml-formatter": "^3.6.0"
}
}