-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.69 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.69 KB
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
{
"name": "pdepaula",
"displayName": "PdePaula",
"description": "Conjunto de recursos básicos de aprendizagem em programação.",
"homepage": "https://github.com/jmurowaniecki/P",
"version": "1.0.2",
"publisher": "compilouit",
"author": {
"name": "John Murowaniecki",
"email": "jmurowaniecki@gmail.com",
"url": "https://compilou.com.br"
},
"maintainers": [
"John Murowaniecki <jmurowaniecki@gmail.com>"
],
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/jmurowaniecki/P.git"
},
"bugs": {
"url": "https://github.com/jmurowaniecki/P/issues"
},
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#261d45",
"theme": "dark"
},
"engines": {
"vscode": "^1.48.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Education",
"Snippets",
"Programming Languages"
],
"scripts": {
"system:show-function-names": "cat src/pdpaula | grep -E 'function (.*)\\(\\) \\{$' | sed -E 's/function ([A-Z]+).*/\\1/'",
"system:check-documentation": "for i in $(npm run -s system:show-function-names | sort); do [ ! -f \"docs/função-${i}.md\" ] && echo \"Função ${i} não documentada.\"; done",
"publish:extension": "vsce publish patch",
"publish:repository": "git push origin master",
"publish": "npm run publish:extension && npm run publish:repository"
},
"devDependencies": {
"@types/vscode": "^1.48.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.5.5"
},
"activationEvents": [
"onCommand:PdPaula.execute-p-file",
"onCommand:PdPaula.create-p-file",
"onCommand:PdPaula.jumpstart",
"onStartupFinished:PdPaula.jumpstart",
"onTerminalProfile:PdPaula.terminal"
],
"main": "./src/executor.js",
"contributes": {
"languages": [{
"id": "p",
"aliases": [
"PdPaula",
"p"
],
"extensions": [
".p",
".pdp",
".pdpaula"
],
"configuration": "./language-configuration.json"
}],
"terminal": {
"profiles": [{
"id": "PdPaula.terminal",
"title": "Terminal",
"icon": "$(debug)",
"path": "pdpaula"
}]
},
"menus": {
"editor/title": [{
"when": "resourceLangId == p",
"command": "PdPaula.execute-p-file",
"alt": "PdPaula.create-p-file",
"group": "navigation"
}, {
"command": "PdPaula.jumpstart",
"group": "navigation"
}]
},
"commands": [{
"command": "PdPaula.execute-p-file",
"title": "Executar arquivo",
"icon": "assets/v1.gif"
},
{
"command": "PdPaula.create-p-file",
"title": "Novo arquivo .P de Paula",
"icon": "$(play)"
},
{
"command": "PdPaula.jumpstart",
"title": "Iniciando .P de Paula",
"icon": "$(bug)"
}
],
"snippets": [{
"language": "p",
"path": "./snippets/snippets.json"
}],
"grammars": [{
"language": "p",
"scopeName": "source.p",
"path": "./syntaxes/p.tmLanguage.json"
}]
}
}