-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
71 lines (71 loc) · 1.97 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
{
"name": "pico8-vscode",
"displayName": "pico8-vscode",
"description": "Do all the pico8 things in vscode",
"version": "0.0.1",
"author": {
"name": "John Barton"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/joho/pico8-vscode.git"
},
"icon": "images/pico8.png",
"publisher": "johob",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:pico8"
],
"main": "./out/src/extension",
"contributes": {
"languages": [{
"id": "pico8",
"extensions": [
".p8"
],
"configuration": "./syntaxes/language-configuration.json"
}],
"grammars": [{
"language": "pico8",
"scopeName": "source.p8",
"path": "./syntaxes/pico8.json"
}],
"commands": [{
"command": "pico8.run",
"title": "Run a pico8 file"
}],
"keybindings": [
{ "key": "cmd+r", "command": "pico8.run" }
],
"configuration": {
"type": "object",
"title": "Pico-8 Configuration",
"properties": {
"pico8.executablePath": {
"type": "string",
"default": "/Applications/PICO-8.app/Contents/MacOS/pico8",
"description": "Path to the pico8 cli (ie /Applications/PICO-8.app/Contents/MacOS/pico8 on MacOS, or C:\\WHO_KNOWS\\PICO8.EXE on windows)"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}