-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.35 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
{
"name": "ftc-for-vs-code",
"publisher": "Juice16236",
"repository": {
"url": "https://github.com/kidsonfilms-python-rules/FTC-for-VS-Code"
},
"displayName": "FTC for VS Code",
"description": "An extension for accessing FTC snippets, debugger, and cmdline tools from a button",
"version": "0.1.1",
"engines": {
"vscode": "^1.59.0"
},
"icon": "icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:ftc-for-vs-code.runApp",
"onCommand:ftc-for-vs-code.createClass",
"onCommand:ftc-for-vs-code.intializeProject",
"onCommand:ftc-for-vs-code.addDependency"
],
"main": "./extension.js",
"files": [
"./resources/snippets-new-class",
"./modules/**"
],
"contributes": {
"commands": [
{
"category": "FTC",
"command": "ftc-for-vs-code.runApp",
"title": "Build and Run FTC App",
"icon": "./resources/play-icon.svg"
},
{
"category": "FTC",
"command": "ftc-for-vs-code.createClass",
"title": "Create Class"
},
{
"category": "FTC",
"command": "ftc-for-vs-code.addDependency",
"title": "Add Dependency"
},
{
"category": "FTC",
"command": "ftc-for-vs-code.intializeProject",
"title": "Intialize a new FTC Project"
}
],
"snippets": [
{
"language": "java",
"path": "./snippets.json"
}
],
"menus": {
"editor/title/run": [
{
"category": "FTC",
"command": "ftc-for-vs-code.runApp",
"group": "navigation@0",
"title": "Build and Run FTC App",
"when": "resourceLangId == java && !isInDiffEditor"
}
]
},
"configuration": {
"title": "FTC for VS Code",
"type": "Object",
"properties": {
"ftc-for-vs-code.useADB": {
"type": "boolean",
"description": "Use ADB to push code remotely to a FTCRobotController. Requires ADB to be installed on computer."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "node ./test/runTest.js",
"gen-snippets": "node ./scripts/genSnippets.js",
"dev-init": "node ./scripts/init.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.59.0",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"list-github-dir-content": "^3.0.0",
"mocha": "^8.4.0",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
},
"dependencies": {
"vsce": "^1.96.1"
}
}