-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.53 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
102
103
{
"name": "fitsimagevoy",
"displayName": "FitsImageVOY",
"icon": "./assets/images/appIcon.png",
"description": "Visualize FITS files with VSCode.",
"version": "0.0.5",
"publisher": "fits",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Visualization",
"Programming Languages",
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"myExtension.defaultColormap": {
"type": "string",
"default": "viridis",
"description": "Default colormap for the extension plots."
},
"myExtension.defaultScale": {
"type": "string",
"default": "linear",
"enum": [
"linear",
"logarithmic",
"power",
"sqrt",
"squared"
],
"description": "Default scale for the extension plots."
}
},
"customEditors": [
{
"viewType": "fitsimagevoy.fits",
"displayName": "FITS Image Viewer",
"selector": [
{
"filenamePattern": "*.fits"
},
{
"filenamePattern": "*.fits.fz"
}
]
}
]
},
"files": [
"out",
"webview",
"src",
"assets"
],
"type": "commonjs",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "node ./esbuild.js",
"watch": "node ./esbuild.js --watch",
"package": "NODE_ENV=production node ./esbuild.js",
"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": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/codicons": "^0.0.35",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"esbuild": "^0.16.17",
"eslint": "^8.56.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^1.4.0",
"astrojs": "^0.1.3",
"crypto": "^1.0.1",
"d3": "^7.8.5",
"fits-reader": "^0.0.8",
"fitsjs": "^0.6.6",
"mpld3": "^0.5.10",
"pngjs": "^7.0.0",
"uuid": "^9.0.1",
"vscode-codicons": "^0.0.17"
},
"repository": {
"type": "git",
"url": "https://github.com/gmegh/fitsimagevoy.git"
}
}