This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
forked from jeremyramin/terminal-plus
-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
73 lines (73 loc) · 1.79 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
{
"name": "platformio-ide-terminal",
"main": "./lib/platformio-ide-terminal",
"version": "2.10.1",
"description": "A terminal package for Atom, complete with themes, API and more for PlatformIO IDE. Fork of terminal-plus.",
"author": "Jeremy Ebneyamin",
"keywords": [
"PlatformIO",
"terminal-plus",
"terminal",
"iterm",
"panel",
"pty",
"tty",
"xterm",
"iterm",
"iterm2",
"console",
"powershell"
],
"contributors": [
{
"name": "Ivan Kravets",
"email": "me@ikravets.com",
"url": "http://platformio.org"
},
{
"name": "Dmytro Kyrychuk",
"email": "dmytro.kyrychuck@gmail.com",
"url": "http://platformio.org"
},
{
"name": "The Community Contributors",
"url": "https://github.com/platformio/platformio-atom-ide-terminal/graphs/contributors"
}
],
"homepage": "https://atom.io/packages/platformio-ide-terminal",
"repository": "https://github.com/platformio/platformio-atom-ide-terminal",
"license": "MIT",
"engines": {
"atom": ">=1.12.2 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.2.0",
"node-pty-prebuilt-multiarch": "^0.9.0",
"term.js": "https://github.com/jeremyramin/term.js/tarball/master",
"underscore": "^1.8.3"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"platformioIDETerminal": {
"description": "PlatformIO IDE Terminal API",
"versions": {
"1.1.0": "providePlatformIOIDETerminal"
}
},
"runInTerminal": {
"description": "Deprecated API for PlatformIO IDE 1.0",
"versions": {
"0.14.5": "provideRunInTerminal"
}
}
}
}