-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "vscode-tsx-notebook",
"displayName": "TSX Notebook",
"description": "TSX support for VS Code notebooks",
"version": "0.0.1",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Notebooks"
],
"activationEvents": [
"onNotebook:tsx-notebook"
],
"main": "./dist/extension.js",
"contributes": {
"notebooks": [
{
"type": "tsx-notebook",
"displayName": "TSX Notebook",
"selector": [
{
"filenamePattern": "*.tsxnb"
}
]
}
],
"languages": [
{
"id": "typescript",
"aliases": ["TypeScript", "ts", "typescript"],
"extensions": [".ts", ".tsx"]
}
]
},
"scripts": {
"vscode:prepublish": "yarn run build",
"compile": "webpack",
"cli": "node out/cli.js",
"watch": "webpack --watch",
"build": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.91.0",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.31.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}