This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.59 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
{
"name": "jsonresume",
"displayName": "JSONResume Editor",
"description": "JSONResume Editor let's you preview your resume from inside VSCode",
"version": "0.0.3",
"icon": "assets/icon.png",
"publisher": "reflog",
"repository": {
"type": "git",
"url": "https://github.com/reflog/vscode-jsonresume.git"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:json"
],
"main": "./out/src/extension",
"contributes": {
"jsonValidation": [
{
"fileMatch": "*.resume.json",
"url": "http://json.schemastore.org/resume"
}
],
"commands": [
{
"command": "JSONResume.previewJsonResume",
"title": "Preview JSONResume"
},
{
"command": "JSONResume.generateJsonResumePDF",
"title": "Convert JSONResume to PDF"
}
],
"configuration": {
"type": "object",
"title": "JSONResume Viewer configuration",
"properties": {
"JSONResume.theme": {
"type": "string",
"default": "modern",
"description": "Theme to use. Either one of: 'positive', 'modern', 'compact', 'basis' or a path to json-resume theme"
},
"JSONResume.analysis": {
"type": "boolean",
"default": true,
"description": "Show resume analysis on each run"
},
"JSONResume.autoSave": {
"type": "boolean",
"default": true,
"description": "Save the resume before showing/updating the preview"
},
"JSONResume.validation": {
"type": "boolean",
"default": true,
"description": "Validate the resume on each run"
},
"JSONResume.openPDF": {
"type": "boolean",
"default": false,
"description": "Open the PDF after it's generated"
}
}
},
"keybindings": [
{
"command": "JSONResume.previewJsonResume",
"key": "Ctrl+Shift+j",
"win": "Ctrl+Shift+j",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"chalk": "1.1.3",
"hackmyresume": "1.8.0",
"handlebars": "4.0.6",
"json-to-ast": "1.2.15",
"html-pdf": "2.1.0",
"open": "0.0.5"
}
}