-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 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
75
76
77
78
79
80
81
82
{
"bugs": {
"url": "https://github.com/tillig/vscode-json-stable-stringify/issues"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"categories": [
"Formatters"
],
"contributes": {
"commands": [
{
"command": "extension.vscode-json-stable-stringify.jsonStableSort",
"title": "Sort JSON (Stable)"
}
]
},
"dependencies": {
"json-stable-stringify": "^1.3.0",
"json5": "^2.2.3"
},
"description": "JSON object sort/document formatter using json-stable-stringify.",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/glob": "^8.1.0",
"@types/json-stable-stringify": "^1.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^22.18.8",
"@types/vscode": "^1.101.0",
"@vscode/test-electron": "^2.3.2",
"@vscode/vsce": "^3.6.2",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^60.8.3",
"eslint-plugin-prettier": "^5.5.4",
"glob": "^11.1.0",
"mocha": "^11.7.4",
"prettier": "^3.6.2",
"tar": "^7.5.11",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1"
},
"displayName": "JSON Stable Sort",
"engines": {
"vscode": "^1.101.0"
},
"homepage": "https://github.com/tillig/vscode-json-stable-stringify",
"keywords": [
"sort",
"json",
"format"
],
"license": "MIT",
"main": "./dist/extension.js",
"name": "vscode-json-stable-stringify",
"publisher": "TravisIllig",
"qna": "https://github.com/tillig/vscode-json-stable-stringify/issues",
"repository": {
"type": "git",
"url": "https://github.com/tillig/vscode-json-stable-stringify"
},
"scripts": {
"build": "npm run compile && npm run lint && npm run pack",
"compile": "tsc -p ./",
"debug-package": "webpack --mode development",
"deploy": "vsce publish -i *.vsix",
"lint": "eslint",
"pretest": "npm run compile",
"test": "node ./out/test/index.js",
"prepack": "webpack --mode production",
"pack": "vsce pack",
"watch": "tsc -watch -p ./"
},
"version": "1.4.0"
}