-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
90 lines (90 loc) · 2.22 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
{
"name": "typescript-notebook",
"publisher": "donjayamanne",
"displayName": "TypeScript Notebooks",
"description": "TypeScript with Jupyter Notebooks",
"version": "1.1.0",
"engines": {
"vscode": "^1.53.0"
},
"author": {
"name": "Don Jayamanne"
},
"license": "MIT",
"homepage": "https://github.com/DonJayamanne/typescript-notebook",
"repository": {
"type": "git",
"url": "https://github.com/DonJayamanne/typescript-notebook"
},
"bugs": {
"url": "https://github.com/DonJayamanne/typescript-notebook/issues"
},
"qna": "https://stackoverflow.com/questions/tagged/visual-studio-code+jupyter",
"icon": "icon.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"keywords": [
"jupyter",
"notebook",
"ipynb",
"multi-root ready",
"typescript"
],
"categories": [
"Programming Languages",
"Other",
"Data Science",
"Machine Learning",
"Notebooks"
],
"extensionDependencies": [
"ms-toolsai.jupyter"
],
"activationEvents": [
"*",
"onCommand:typescript-notebook.install"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "typescript-notebook.install",
"title": "Install TypeScript Kernel",
"category": "Notebook"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"vscode:prepublish_old": "npm run compile",
"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",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch"
},
"devDependencies": {
"@types/fs-extra": "^9.0.7",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.53.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"ts-loader": "^8.0.17",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"fs-extra": "^9.1.0"
}
}