-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
77 lines (69 loc) · 2.08 KB
/
extension.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
{
"identifier": "aloebach.cotton",
"name": "Cotton",
"organization": "Drewmerica Industries",
"description": "Support for Cotten framework for Playdate game development",
"version": "1.1",
"repository": "https://github.com/aloebach/Cotton-Nova",
"bugs": "https://github.com/aloebach/Cotton-Nova/issues",
"categories": ["commands", "tasks"],
"main": "main.js",
"entitlements": {
"clipboard": true, "filesystem": "readwrite", "process": true
},
"commands": {
"extensions": [
{
"title": "Playdate: Level Editor",
"command": "cotton.openLevelEditor"
},
{
"title": "Documentation: CottonScript",
"command": "cotton.DocumentationCottonScript"
},
{
"title": "Documentation: Cotton Wiki",
"command": "cotton.DocumentationWiki"
},
{
"title": "Documentation: SDK",
"command": "cotton.DocumentationSDK"
}
]
},
"taskTemplates": {
"Cotton": {
"name": "Playdate - Cotton",
"description": "Builds and runs your Playdate game",
"buildBeforeRunning": true,
"tasks": {
"build": {
"shell": true,
"command": "pdc",
"args": [
"Source", "$(WorkspaceName).pdx"
],
"env": {
}
},
"run": {
"shell": true,
"command": "/usr/bin/open",
"args": [
"$(WorkspaceName).pdx"
],
"env": {
}
}
}
}
},
"config": [
{
"key": "cotton.foobar",
"title": "Foo the bar",
"type": "boolean",
"default": false
}
]
}