-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
166 lines (166 loc) · 4.43 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "select-book",
"displayName": "Select Book",
"description": "Notebook for running Select queries.",
"version": "6.2.1",
"publisher": "haubar",
"repository": {
"url": "https://github.com/haubar/select-book"
},
"engines": {
"vscode": "^1.68.0"
},
"categories": [
"Notebooks"
],
"icon": "select-book.png",
"activationEvents": [
"onNotebook:select-book",
"onNotebook:interactive",
"onLanguage:select-book",
"onCommand:select-book.secrets",
"onCommand:select-book.newInteractive",
"onCommand:select-book.newNotebook"
],
"main": "./dist/extension-node.js",
"contributes": {
"commands": [
{
"command": "select-book.secrets",
"title": "Secrets",
"category": "Select Book"
},
{
"command": "select-book.newInteractive",
"title": "Create an Interactive Window",
"shortTitle": "Interactive Select Window",
"category": "Select Book"
},
{
"command": "select-book.newNotebook",
"title": "Create a new blank Select Notebook",
"shortTitle": "Select Notebook",
"category": "Select Book"
}
],
"menus": {
"file/newFile": [
{
"command": "select-book.newInteractive",
"group": "notebook"
},
{
"command": "select-book.newNotebook",
"group": "notebook"
}
]
},
"notebookRenderer": [
{
"id": "select-book",
"displayName": "Select Book Renderer",
"entrypoint": "./dist/renderer.js",
"requiresMessaging": "optional",
"mimeTypes": [
"x-application/select-book"
]
}
],
"notebooks": [
{
"id": "select-book",
"type": "select-book",
"displayName": "Select Book",
"selector": [
{
"filenamePattern": "*.select"
}
]
}
],
"languages": [
{
"id": "select-book",
"aliases": [
"Select Book"
],
"filenamePatterns": [
"*.select-book.txt"
]
}
],
"grammars": [
{
"language": "select-book",
"scopeName": "source.select-book",
"path": "./syntaxes/select-book.tmGrammar.json",
"embeddedLanguages": {
"meta.embedded.block.javascript": "javascript",
"meta.embedded.block.json": "json",
"meta.embedded.block.html": "html",
"meta.embedded.block.xml": "xml",
"meta.embedded.block.css": "css"
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch --info-verbosity verbose",
"lint": "eslint --config .eslintrc.json ./src/**/*.ts",
"ts-compile": "tsc -b",
"integration-test": "npm run ts-compile && node ./out/extension/test-integration/runTest.js",
"unit-test": "npm run ts-compile && npx mocha ./out/extension/test-unit",
"compile-lint-test": "npm run compile && npm run lint && npm run unit-test",
"precommit": "npm run lint",
"deploy": "npx vsce publish --web",
"postinstall": "npx vscode-dts main && npx vscode-dts dev"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.1",
"@types/node": "^12.20.10",
"@types/user-home": "^2.0.0",
"@types/uuid": "^8.3.0",
"@types/vscode": "^1.68.0",
"@types/vscode-notebook-renderer": "^1.57.8",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"axios": "^0.21.1",
"css-loader": "^5.1.3",
"eslint": "^7.22.0",
"glob": "^7.1.6",
"json-stringify-safe": "^5.0.1",
"mocha": "^10.0.0",
"os": "^0.1.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^8.0.18",
"typescript": "^4.7.3",
"url": "^0.11.0",
"util": "^0.12.3",
"vscode-codicons": "0.0.14",
"vscode-dts": "^0.3.2",
"vscode-test": "^1.5.1",
"webpack": "^5.26.3",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"-": "0.0.1",
"@types/react": "^17.0.3",
"lint": "^1.1.2",
"lodash": "^4.17.21",
"preact": "^10.5.13",
"save-dev": "0.0.1-security",
"tsc": "^2.0.4",
"user-home": "^2.0.0",
"uuid": "^8.3.2",
"vsce": "^2.9.1",
"vscode": "^0.9.9"
}
}