-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.91 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
{
"name": "jcode-jota",
"displayName": "jcode-jota",
"description": "submit code to jota",
"version": "1.0.0",
"publisher": "Sabro98",
"repository": {
"type": "git",
"url": "https://github.com/Sabro98/jcode-jota"
},
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:jcode-jota.submitCode"
],
"main": "./out/extension.js",
"extensionKind": [
"ui",
"workspace"
],
"contributes": {
"commands": [
{
"command": "jcode-jota.submitCode",
"title": "Submit Code!",
"category": "jcode",
"icon": {
"light": "media/icons/submit-light-theme.svg",
"dark": "media/icons/submit-dark-theme.svg"
}
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == c",
"command": "jcode-jota.submitCode",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.3",
"@types/node": "14.x",
"@types/node-fetch": "^2.5.12",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.1.7",
"i": "^0.3.7",
"mocha": "^8.4.0",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"vscode-test": "^1.5.2"
},
"dependencies": {
"dotenv": "^10.0.0",
"fs": "^0.0.1-security",
"node-fetch": "^2.6.1",
"vsce": "^1.100.1"
}
}