-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.61 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
99
100
101
{
"name": "iris-jupyter-server",
"displayName": "Jupyter Server Proxy for InterSystems IRIS",
"description": "Run a local Jupyter Server acting as a proxy for InterSystems IRIS servers defined in InterSystems Server Manager",
"version": "0.0.7-SNAPSHOT",
"preview": true,
"publisher": "intersystems-community",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/intersystems-community/vscode-iris-jupyter-server"
},
"license": "MIT",
"keywords": [
"intersystems",
"objectscript",
"python",
"jupyter"
],
"contributors": [
{
"name": "John Murray",
"email": "[email protected]"
}
],
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"private": true,
"extensionDependencies": [
"ms-toolsai.jupyter",
"intersystems-community.objectscript-pack"
],
"activationEvents": [
"onNotebook:jupyter-notebook",
"onCommand:jupyter.selectjupyteruri",
"onCommand:switchToRemoteKernels",
"onCommand:switchToAnotherRemoteKernels"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "iris-polyglot",
"aliases": [
"Polyglot IRIS notebook"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run webpack",
"compile": "webpack",
"watch": "webpack --watch",
"webpack": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"package-prep": "node -e \"require('fs').rmSync('./dist/', { recursive: true, force: true })",
"package:win32-x64": "npm run package-prep && node -e \"require('fs').cpSync('./intersystems-iris-native/bin/winx64/', './dist/', { recursive: true, filter: (f) => !f.endsWith('irisnative.node') })\" && vsce package --target win32-x64",
"package:darwin-x64": "npm run package-prep && node -e \"require('fs').cpSync('./intersystems-iris-native/bin/macx64/', './dist/', { recursive: true, filter: (f) => !f.endsWith('irisnative.node') })\" && vsce package --target darwin-x64",
"package:darwin-arm64": "npm run package-prep && node -e \"require('fs').cpSync('./intersystems-iris-native/bin/macos/', './dist/', { recursive: true, filter: (f) => !f.endsWith('irisnative.node') })\" && vsce package --target darwin-arm64",
"package:linux-x64": "npm run package-prep && node -e \"require('fs').cpSync('./intersystems-iris-native/bin/lnxubuntux64/', './dist/', { recursive: true, filter: (f) => !f.endsWith('irisnative.node') })\" && vsce package --target linux-x64"
},
"dependencies": {
"fastify": "^4.9.2",
"@fastify/websocket": "^7.1.1",
"@nteract/messaging": "7.0.20",
"uuid": "^9.0.0",
"json5": "^2.2.3",
"axios": "^0.24.0",
"axios-cookiejar-support": "^1.0.1",
"tough-cookie": "^4.0.0",
"async-mutex": "^0.4.0"
},
"devDependencies": {
"@intersystems-community/intersystems-servermanager": "latest",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"@types/uuid": "^8.3.4",
"@types/vscode": "^1.78.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.24.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"node-loader": "^2.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.80.0",
"webpack-cli": "^4.10.0"
}
}