-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 2.3 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
{
"name": "icestorm",
"displayName": "IceStorm",
"description": "Build and program FPGA with project IceStorm",
"version": "1.0.6",
"engines": {
"vscode": "^1.48.0"
},
"icon": "assets/icon.png",
"publisher": "r1cebank",
"repository": "https://github.com/r1cebank/icestorm-vscode-extension.git",
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:icestorm.createproject",
"onCommand:icestorm.buildproject",
"onCommand:icestorm.programproject"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "icestorm.createproject",
"title": "Create FPGA project"
},
{
"command": "icestorm.refreshproject",
"title": "Reload project settings"
},
{
"command": "icestorm.programproject",
"title": "Program FPGA board",
"icon": {
"light": "./assets/download_light.svg",
"dark": "./assets/download_dark.svg"
}
},
{
"command": "icestorm.buildproject",
"title": "Build FPGA project",
"icon": {
"light": "./assets/hammer_light.svg",
"dark": "./assets/hammer_dark.svg"
}
}
],
"menus": {
"editor/title": [
{
"when": "inIcestormProject",
"command": "icestorm.buildproject",
"group": "navigation"
},
{
"when": "inIcestormProject",
"command": "icestorm.programproject",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/shelljs": "^0.8.8",
"@types/vscode": "^1.48.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"mocha": "^8.0.1",
"ts-loader": "^8.0.3",
"typescript": "^3.8.3",
"vscode-test": "^1.4.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"shelljs": "^0.8.4",
"tsc": "^1.20150623.0",
"yaml": "^1.10.0"
}
}