-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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
{
"name": "json-unescaped-unicode",
"displayName": "JSON Unescaped Unicode",
"description": "Unescape Unicode-escaped JSON",
"keywords": [
"JSON",
"Unicode",
"Unescape"
],
"license": "MIT",
"version": "1.0.0",
"repository": "https://github.com/sunaoka/json-unescaped-unicode",
"publisher": "sunaoka",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"icon": "resources/icon.png",
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "json-unescaped-unicode.run",
"title": "%json-unescaped-unicode.run.title%",
"category": "JSON"
}
],
"menus": {
"commandPalette": [
{
"when": "resourceLangId == json",
"command": "json-unescaped-unicode.run"
}
],
"editor/context": [
{
"when": "resourceLangId == json",
"command": "json-unescaped-unicode.run",
"group": "1_modification@99"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test --timeout 10000",
"coverage": "vscode-test --timeout 10000 --coverage --coverage-output ./coverage --coverage-reporter 'lcov' 'text-summary'",
"publish": "vsce publish --yarn"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.14.10",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.29.0",
"eslint": "^8.57.0",
"glob": "^11.0.0",
"typescript": "^5.5.3"
}
}