-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.37 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
{
"name": "ado-task-viewer",
"displayName": "Azure DevOps Task viewer",
"description": "AzDo Task Viewer",
"icon": "ado-task-viewer.png",
"publisher": "carth",
"version": "0.2.6",
"private": "true",
"repository": {
"type": "git",
"url": "https://github.com/c4rth/ado-task-viewer"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Azure",
"Visualization"
],
"keywords": [
"task.json",
"preview",
"visualizer",
"azure devops",
"extension"
],
"activationEvents": [
"onCommand:ado-task-viewer.viewTask"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ado-task-viewer.viewTask",
"title": "AzDo Task Viewer"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceFilename == task.json",
"command": "ado-task-viewer.viewTask",
"group": "AzDoExtension"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm-run-all vscepack:*",
"compile": "npm-run-all compile:*",
"compile:extension": "tsc -p ./",
"compile:view": "webpack",
"vscepack:extension": "tsc -p ./",
"vscepack:view": "webpack --mode production --devtool hidden-source-map",
"watch": "npm-run-all -p watch:*",
"watch:extension": "tsc -watch -p ./",
"watch:view": "webpack --watch",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src app --ext ts,tsx",
"test": "npm run compile && node ./out/test/runTest.js"
},
"devDependencies": {
"@types/get-value": "^3.0.2",
"@types/glob": "^8.0.0",
"@types/node": "^17.0.41",
"@types/react": "^17.0.52",
"@types/react-collapse": "^5.0.1",
"@types/react-dom": "^17.0.18",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vscode/test-web": "^0.0.32",
"css-loader": "^6.7.1",
"eslint": "^8.27.0",
"glob": "^8.0.1",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@fluentui/react": "^8.101.0",
"@fluentui/react-hooks": "^8.6.13",
"jsonlint-mod": "^1.7.6",
"react": "^17.0.2",
"react-collapse": "^5.1.1",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.2"
}
}