-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
145 lines (145 loc) · 3.88 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
{
"name": "GDS-Lens",
"displayName": "GDS Lens — GDSII & OASIS Layout Viewer",
"description": "View GDSII and OASIS chip layouts directly in VS Code, with .lyp layer colors and DRC/LVS marker browsing",
"version": "1.7.1",
"icon": "images/logo.png",
"license": "MIT",
"categories": [
"Visualization",
"Other"
],
"keywords": [
"gdsii",
"gds",
"gds.gz",
"gdsii viewer",
"layout",
"layout viewer",
"oasis",
"oasis viewer",
"mask",
"lyp",
"vlsi",
"eda",
"ic-layout",
"chip-design",
"semiconductor",
"silicon",
"photonics",
"drc",
"lvs",
"tapeout",
"asic",
"cad",
"lyrdb"
],
"galleryBanner": {
"color": "#0f1720",
"theme": "dark"
},
"engines": {
"vscode": "^1.125.0"
},
"main": "./dist/extension.js",
"browser": "./dist/extension.js",
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"publisher": "ethml",
"scripts": {
"build:webview": "node scripts/copy-webview.mjs",
"bundle": "esbuild src/extension.cjs --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=browser --target=es2022 --minify",
"compile": "npm run build:webview && npm run bundle",
"watch": "npm run build:webview && npm run bundle -- --sourcemap --watch",
"vscode:prepublish": "npm run compile",
"test:web": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. test/fixtures",
"lint": "eslint .",
"package": "npx @vscode/vsce package -o GDS-Lens-$npm_package_version.vsix",
"publish:vsce": "sh scripts/with-env.sh npx @vscode/vsce publish --packagePath GDS-Lens-$npm_package_version.vsix",
"publish:ovsx": "sh scripts/with-env.sh npx ovsx publish GDS-Lens-$npm_package_version.vsix",
"publish:all": "npm run package && npm run publish:vsce && npm run publish:ovsx"
},
"devDependencies": {
"@types/node": "24.x",
"@types/vscode": "^1.125.0",
"@vscode/test-web": "^0.0.81",
"@xmldom/xmldom": "^0.9.10",
"esbuild": "^0.28.2",
"eslint": "^10.5.0",
"gds-lens": "1.0.2",
"globals": "^17.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/EthanLowenthal/GDS-Lens-Vscode"
},
"homepage": "https://github.com/EthanLowenthal/GDS-Lens-Vscode#readme",
"bugs": {
"url": "https://github.com/EthanLowenthal/GDS-Lens-Vscode/issues"
},
"contributes": {
"commands": [
{
"command": "GDS-Lens.goToCoordinate",
"title": "GDSLens: Go to Coordinate"
},
{
"command": "GDS-Lens.showDebugTools",
"title": "GDSLens: Toggle Debug Tools"
},
{
"command": "GDS-Lens.toggleAutoReload",
"title": "GDSLens: Toggle Auto-Reload on Change"
}
],
"menus": {
"commandPalette": [
{
"command": "GDS-Lens.goToCoordinate",
"when": "activeCustomEditorId == 'GDS-Lens.editor'"
}
]
},
"customEditors": [
{
"viewType": "GDS-Lens.editor",
"displayName": "GDS Lens",
"selector": [
{
"filenamePattern": "*.gds"
},
{
"filenamePattern": "*.oas"
},
{
"filenamePattern": "*.oasis"
},
{
"filenamePattern": "*.gds.gz"
},
{
"filenamePattern": "*.oas.gz"
},
{
"filenamePattern": "*.oasis.gz"
}
],
"priority": "default"
}
],
"configuration": {
"title": "GDS Lens",
"properties": {
"GDS-Lens.autoReload": {
"type": "boolean",
"default": false,
"description": "Reload the viewer automatically when the open layout file changes on disk. When off, a header offers Reload (once) and Always (turns this on) instead."
}
}
}
}
}