-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.53 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
{
"name": "BigON",
"displayName": "BigON",
"description": "Analisa a complexidade assintótica de código-fonte em tempo real.",
"version": "1.0.5",
"publisher": "vncsmnl",
"engines": {
"vscode": "^1.80.0"
},
"license": "MIT",
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"big-o",
"complexity",
"asymptotic",
"ast",
"time-complexity",
"space-complexity"
],
"icon": "./assets/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/vncsmnl/BigON.git"
},
"bugs": {
"url": "https://github.com/vncsmnl/BigON/issues"
},
"homepage": "https://github.com/vncsmnl/BigON#readme",
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact",
"onLanguage:python",
"onLanguage:ruby",
"onLanguage:cpp",
"onLanguage:c",
"onLanguage:go",
"onLanguage:java",
"onCommand:BigON.analyzeFile",
"onCommand:BigON.toggleDecorations",
"onCommand:BigON.openExplanation"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "BigON.analyzeFile",
"title": "BigON: Analisar Complexidade do Arquivo"
},
{
"command": "BigON.toggleDecorations",
"title": "BigON: Alternar Anotações In-line"
},
{
"command": "BigON.openExplanation",
"title": "BigON: Abrir Painel de Explicação"
}
],
"configuration": {
"title": "BigON Complexity Analyzer",
"properties": {
"BigON.enableCodeLens": {
"type": "boolean",
"default": true,
"description": "Exibir cabeçalho de complexidade CodeLens acima das funções."
},
"BigON.enableInlineDecorations": {
"type": "boolean",
"default": true,
"description": "Exibir anotações de custo Big-O diretamente no final das linhas de laços."
},
"BigON.enableHover": {
"type": "boolean",
"default": true,
"description": "Exibir balão explicativo de complexidade ao passar o mouse sobre funções."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"test": "jest"
},
"dependencies": {
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@types/vscode": "^1.80.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}