-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.07 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
{
"name": "blossom",
"displayName": "blossom",
"description": "VSCode support for the blossom pta eco-system",
"version": "0.0.1",
"publisher": "blossom-hub",
"repository": {
"type": "git",
"url": "git+https://github.com/blossom-hub/vscode-extension.git"
},
"bugs": {
"url": "https://github.com/blossom-hub/vscode-extension/issues"
},
"homepage": "https://github.com/blossom-hub/vscode-extension#readme",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages",
"Notebooks"
],
"activationEvents": [
"onLanguage:blossom",
"onLanguage:blossom-book",
"onNotebook:blossom-book"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"title": "Blossom",
"properties": {
"blossom.location": {
"type": "string",
"default": "G:\\Code\\github\\blossom\\blossom-cli\\bin\\Debug\\netcoreapp3.1\\blossom-cli.exe",
"description": "Location to find the blossom executable"
}
}
},
"languages": [
{
"id": "blossom",
"aliases": [
"Blossom",
"blossom"
],
"extensions": [
".fledge",
".blossom"
]
},
{
"id": "blossom-book",
"aliases": [
"Blossom"
]
}
],
"grammars": [
{
"language": "blossom",
"scopeName": "text.blossom",
"path": "./syntaxes/blossom.tmLanguage.json"
}
],
"notebooks": [
{
"type": "blossom-book",
"displayName": "Blossom",
"selector": [
{
"filenamePattern": "*.blossom-notebook"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.24.0",
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/node": "^14.14.21",
"@types/vscode": "^1.52.0",
"typescript": "^4.1.3",
"vscode-test": "^1.4.1"
}
}