-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.79 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
{
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cezaraugusto/vscode-chrome-extension-manifest-json-schema.git"
},
"engines": {
"vscode": "^1.28.0"
},
"name": "vscode-chrome-extension-manifest-json-schema",
"version": "1.0.2",
"description": "An extension to finally bring support for Chrome extensions Manifest JSON schemas into Visual Studio Code",
"author": {
"name": "Cezar Augusto",
"email": "[email protected]",
"url": "https://cezaraugusto.net"
},
"scripts": {
"prettier": "prettier **/*.{md,json} *.{md,json} --write",
"test": "jasmine",
"build:extension": "vsce package",
"publish:extension": "vsce publish"
},
"prettier": {
"proseWrap": "always",
"tabWidth": 2
},
"files": [
"module.js"
],
"keywords": [
"browser",
"chrome",
"extension",
"json",
"schemas",
"schema",
"manifest",
"v3",
"v2"
],
"publisher": "cezaraugusto",
"displayName": "Chrome Extension Manifest JSON Schema",
"categories": [
"Linters",
"Other"
],
"contributes": {
"jsonValidation": [
{
"fileMatch": "manifest.json",
"url": "./node_modules/chrome-extension-manifest-json-schema/manifest/manifest.schema.v3.json"
}
]
},
"bugs": {
"url": "https://github.com/cezaraugusto/vscode-chrome-extension-manifest-json-schema/issues"
},
"homepage": "https://cezaraugusto.com",
"galleryBanner": {
"theme": "dark",
"color": "#007C00"
},
"icon": "icon.png",
"dependencies": {
"chrome-extension-manifest-json-schema": "^0.2.1"
},
"devDependencies": {
"@vscode/vsce": "^3.1.0",
"cross-var": "^1.1.0",
"jasmine": "^5.3.0",
"jsonschema": "^1.4.1",
"prettier": "^3.3.3"
},
"packageManager": "[email protected]"
}