-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3 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
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
{
"name": "gdsfactory",
"displayName": "gdsfactory",
"description": "gdsfactory plugin for vscode",
"publisher": "gdsfactory",
"version": "0.1.3",
"engines": {
"vscode": ">=1.50.0"
},
"keywords": [
"gds",
"gdsii",
"netlist",
"asic",
"design",
"layout",
"vscode-extension",
"circuit"
],
"categories": [
"Programming Languages",
"Snippets",
"Formatters",
"Linters"
],
"icon": "resources/images/icon_128_128_square.png",
"homepage": "https://gdsfactory.github.io/gdsfactory/",
"activationEvents": [
"onLanguage:picyml"
],
"repository": {
"type": "git",
"url": "https://github.com/gdsfactory/gdsfactory-vscode-extension"
},
"bugs": {
"url": "https://github.com/gdsfactory/gdsfactory-vscode-extension/issues"
},
"license": "MIT",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "gdsfactory.watch",
"title": "watch .py and .pic.yml files",
"tooltip": "Automatically watch changes in .py and .pic.yml files of GDSFactory.",
"icon": {
"light": "resources/light/telescope.svg",
"dark": "resources/dark/telescope.svg"
}
}
],
"languages": [
{
"id": "picyml",
"aliases": [
"picyml"
],
"extensions": [
".pic.yml"
]
}
],
"snippets": [
{
"language": "picyml",
"path": "./snippets/yaml/snippet.json"
},
{
"language": "python",
"path": "./snippets/python_snippets.json"
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == python || resourceLangId == picyml",
"command": "gdsfactory.watch",
"group": "navigation"
}
]
},
"grammars": [
{
"language": "picyml",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.tmLanguage.json"
}
]
},
"yamlValidation": [
{
"fileMatch": ".condarc",
"url": "./schemas/condarc.json"
},
{
"fileMatch": "environment.yml",
"url": "./schemas/conda-environment.json"
},
{
"language": "picyml",
"url": "./schemas/netlist.json"
}
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": ">=7.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": "^20.4.8",
"@types/vscode": ">=1.50.0",
"@typescript-eslint/eslint-plugin": ">=5.16.0",
"@typescript-eslint/parser": ">=5.16.0",
"@vscode/test-electron": ">=2.1.3",
"eslint": ">=8.11.0",
"glob": ">=7.2.0",
"mocha": ">=9.2.2",
"typescript": ">=4.5.5"
},
"extensionDependencies": [
"ms-toolsai.jupyter",
"congyiwu.vscode-jupytext",
"ms-python.python",
"redhat.vscode-yaml"
]
}