-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
155 lines (155 loc) · 5.32 KB
/
Copy pathpackage.json
File metadata and controls
155 lines (155 loc) · 5.32 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "tensorboard",
"displayName": "Tensorboard",
"version": "2024.3.100",
"description": "Launch and view Tensorboards within VS Code",
"publisher": "ms-toolsai",
"preview": true,
"author": {
"name": "Microsoft Corporation"
},
"extensionDependencies": [
"ms-python.python"
],
"license": "MIT",
"homepage": "https://github.com/Microsoft/vscode-tensorboard",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-tensorboard"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-tensorboard/issues"
},
"qna": "https://github.com/microsoft/vscode-jupyter/discussions",
"icon": "icon.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"engines": {
"vscode": "^1.85.0"
},
"l10n": "./l10n",
"keywords": [
"jupyter",
"multi-root ready",
"python"
],
"categories": [
"Data Science",
"Machine Learning",
"Notebooks"
],
"activationEvents": [
"onLanguage:python"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"category": "Python",
"command": "tensorboard.launch",
"title": "%launchTensorBoard.title%"
},
{
"category": "Python",
"command": "tensorboard.refresh",
"enablement": "tensorboard.hasActiveTensorBoardSession",
"icon": "$(refresh)",
"title": "%refreshTensorBoard.title%"
}
],
"menus": {
"commandPalette": [
{
"category": "Python",
"command": "tensorboard.launch",
"title": "%launchTensorBoard.title%",
"when": "!virtualWorkspace && isWorkspaceTrusted"
},
{
"category": "Python",
"command": "tensorboard.refresh",
"enablement": "tensorboard.hasActiveTensorBoardSession",
"icon": "$(refresh)",
"title": "%refreshTensorBoard.title%",
"when": "!virtualWorkspace && isWorkspaceTrusted"
}
]
},
"configuration": {
"type": "object",
"title": "Tensorboard",
"properties": {
"tensorBoard.log": {
"type": "string",
"default": "error",
"enum": [
"off",
"error",
"debug"
],
"description": "%tensorBoard.log.description%"
},
"tensorBoard.logDirectory": {
"default": "",
"description": "%tensorBoard.logDirectory.description%",
"scope": "resource",
"type": "string"
}
}
}
},
"enabledApiProposals": [
"portsAttributes"
],
"scripts": {
"package": "npm run compile-release && vsce package -o ms-toolsai-tensorboard-insiders.vsix",
"postinstall": "npx vscode-dts dev && npx vscode-dts 1.85.0",
"lint": "eslint -c .eslintrc.js --ext .ts --ext .tsx src",
"lint-fix": "eslint --fix --ext .ts,.js src build",
"format": "prettier --check 'src/**/*.ts' 'build/**/*.js' '.github/**/*.yml'",
"format-fix": "prettier 'src/**/*.ts*' --write && prettier 'build/**/*.js' --write && prettier '.github/**/*.yml' --write",
"updateBuildNumber": "node ./build/updateBuildNumber.js",
"compile": "webpack",
"compile-release": "webpack --mode production --devtool hidden-source-map",
"watch": "webpack --watch",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile",
"test": "node ./out/test/runTest.js",
"analyze": "webpack --profile --json > 'tmp/stats.json' && npx webpack-bundle-analyzer tmp/stats.json"
},
"dependencies": {
"@vscode/extension-telemetry": "^1.5.2",
"@vscode/python-extension": "^1.0.5"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.6",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vscode/dts": "^0.4.0",
"@vscode/test-electron": "^2.5.2",
"chai": "^4.3.8",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.5",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^10.5.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"typescript": "^5.2.2",
"ts-loader": "^9.4.4",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4"
}
}