-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.78 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
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "better-seo",
"displayName": "better-seo",
"description": "Avoid common SEO traps while you write your Blogpost",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Jan Schulte",
"url": "https://beyondfeaturetalk.com"
},
"publisher": "janschulte",
"repository": {
"type": "git",
"url": "https://github.com/schultyy/better-seo"
},
"version": "2.0.1",
"icon": "resources/better_seo.png",
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:better-seo.refresh",
"onView:seo-explorer"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "better-seo.refresh",
"title": "refresh",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
}
],
"configuration": {
"title": "BetterSEO",
"properties": {
"betterseo.frontmatter.titleAttribute": {
"type": "string",
"default": "title",
"pattern": "[\\w_\\d\\w]+",
"description": "Specifies the title attribute to look for in the blog post frontmatter"
},
"betterseo.frontmatter.seoTitleAttribute": {
"type": "string",
"default": "seo_title",
"pattern": "[\\w_\\d\\w]+",
"description": "Specifies the SEO title attribute to look for in the blog post frontmatter"
},
"betterseo.frontmatter.seoDescriptionAttribute": {
"type": "string",
"default": "seo_description",
"pattern": "[\\w_\\d\\w]+",
"description": "Specifies the SEO description attribute to look for in the blog post frontmatter"
}
}
},
"menus": {
"view/title": [
{
"command": "better-seo.refresh",
"when": "view == seo-results",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "seo-explorer",
"title": "SEO Explorer",
"icon": "resources/better-seo-icon.svg"
}
]
},
"views": {
"seo-explorer": [
{
"id": "seo-results",
"name": "SEO Results"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"mocha": "^9.0.0",
"glob": "^7.1.7",
"ts-loader": "^9.2.2",
"typescript": "^4.5.4",
"vscode-test": "^1.5.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"@textlint/markdown-to-ast": "^12.0.0",
"gray-matter": "^4.0.3"
}
}