-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.96 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
{
"name": "ceramic",
"displayName": "Ceramic",
"description": "An extension to use ceramic engine with Visual Studio Code",
"publisher": "jeremyfa",
"license": "MIT",
"version": "0.4.0",
"engines": {
"vscode": "^1.4.0"
},
"activationEvents": [
"workspaceContains:**/ceramic.yml",
"onCommand:ceramic.load"
],
"icon": "images/ceramic-logo.png",
"author": "Jeremy Faivre",
"extensionDependencies": [
"nadako.vshaxe"
],
"contributes": {
"commands": [
{
"title": "Load ceramic context",
"command": "ceramic.load",
"category": "Ceramic"
},
{
"title": "Select target",
"command": "ceramic.select-target",
"category": "Ceramic"
},
{
"title": "Select ceramic project",
"command": "ceramic.select-ceramic-project",
"category": "Ceramic"
},
{
"title": "Select variant",
"command": "ceramic.select-variant",
"category": "Ceramic"
}
],
"taskDefinitions": [
{
"type": "ceramic",
"required": [
"args"
],
"properties": {
"args": {
"type": "string",
"description": "Which arguments to use.",
"enum": [
"active configuration"
],
"enumDescriptions": [
"Use the arguments from the active ceramic configuration."
]
}
}
}
]
},
"bugs": "https://github.com/ceramic-engine/vscode-ceramic/issues",
"homepage": "https://github.com/ceramic-engine/vscode-ceramic/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/ceramic-engine/vscode-ceramic.git"
},
"scripts": {
"vscode:prepublish": "haxe build.hxml"
},
"main": "./vscode-ceramic",
"__metadata": {
"id": "85a54d06-d746-4cc6-a68b-5c169693effe",
"publisherDisplayName": "Jérémy Faivre",
"publisherId": "fb5aba49-1389-4715-8bdc-7b56941284a7",
"targetPlatform": "undefined",
"isApplicationScoped": false,
"updated": true,
"isPreReleaseVersion": false,
"installedTimestamp": 1703245309027,
"preRelease": false,
"pinned": false
}
}