-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
123 lines (123 loc) · 3.91 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
122
123
{
"name": "keep-a-changelog",
"displayName": "Keep a Changelog",
"version": "1.3.0",
"description": "An extension that provides snippets for markdown files to create a changelog with the ruleset of Keep a Changelog.",
"categories": [
"Snippets"
],
"keywords": [
"markdown",
"changelog",
"keep a changelog",
"snippets",
"changelog snippets"
],
"bugs": {
"url": "https://github.com/DAmNRelentless/vscode-keepachangelog/issues",
"email": "relentless@rlnt.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/DAmNRelentless/vscode-keepachangelog.git"
},
"license": "LGPL-3.0",
"author": {
"name": "Relentless"
},
"publisher": "RLNT",
"main": "./out/extension.js",
"scripts": {
"compile": "tsc -p ./",
"format": "prettier --write .",
"lint": "eslint src --ext ts",
"package": "vsce package",
"publish": "vsce publish",
"pretest": "yarn run compile && yarn run lint",
"vscode:prepublish": "yarn run compile",
"watch": "tsc -watch -p ./"
},
"contributes": {
"configuration": {
"title": "Keep a Changelog",
"properties": {
"keep-a-changelog.validFiles": {
"title": "Valid Files",
"description": "The list of file names in which changelog snippets should be shown.\nThis is useful so snippets are not suggested in all Markdown files.\nFile names don't need the file extension and are case insensitive.",
"type": "array",
"default": [
"changelog"
]
},
"keep-a-changelog.untitledFile": {
"title": "Untitled File",
"description": "When true, snippets will also work in untitled markdown files.",
"type": "boolean",
"default": false
},
"keep-a-changelog.triggerCharacter": {
"title": "Trigger Character",
"description": "When true, changelog snippet suggestions will be triggered by the character '-'.",
"type": "boolean",
"default": true
},
"keep-a-changelog.dateFormat": {
"title": "Date Format",
"description": "The format of the date in the changelog.",
"type": "string",
"enum": [
"DD/MM/YYYY",
"MM/DD/YYYY",
"YYYY/MM/DD"
],
"default": "YYYY/MM/DD"
},
"keep-a-changelog.dateSeparator": {
"title": "Date Separator",
"description": "The separator used for the date format in the changelog.",
"type": "string",
"default": "-"
},
"keep-a-changelog.defaultAuthor": {
"title": "Default Author",
"description": "The default author used for URLs within the changelog.\nIf empty, it will use tab-completion within the snippet.\nCan be overriden via workspace settings.",
"type": "string",
"default": ""
},
"keep-a-changelog.defaultRepository": {
"title": "Default Repository",
"description": "The default repository used for URLs within the changelog.\nIf empty, it will use tab-completion within the snippet.\nCan be overriden via workspace settings.",
"type": "string",
"default": ""
}
}
}
},
"activationEvents": [
"onLanguage:markdown"
],
"devDependencies": {
"@types/node": "20.2.5",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vscode/test-electron": "^2.3.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-regexp": "^1.15.0",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"typescript": "5.0.4",
"vsce": "^2.15.0"
},
"packageManager": "yarn@3.6.0",
"engines": {
"vscode": "^1.79.0"
},
"icon": "images/icon.png",
"markdown": "github",
"vsce": {
"dependencies": false,
"useYarn": false
}
}