-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "web-search",
"configSchema": {
"browser": {
"type": "object",
"properties": {
"position": {
"default": "right",
"type": "string",
"enum": [
"top",
"right",
"bottom",
"left"
]
},
"size": {
"type": "integer",
"default": 450
},
"useragent": {
"type": "string",
"description": "default is iOS9 for iPhone.",
"default": "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A344 Safari/601.1"
},
"styles": {
"type": "string",
"description": "Additional styles.",
"default": "*{font-family: Verdana, \"游ゴシック\", YuGothic, \"ヒラギノ角ゴ ProN W3\", \"Hiragino Kaku Gothic ProN\", \"メイリオ\", Meiryo, sans-serif !important;} /* http://www.dtp-transit.jp/misc/web/post_1881.html */"
}
}
},
"webservice": {
"type": "array",
"default": [
"http://google.com/search?q=$q$",
"http://wikipedia.org/wiki/$q$"
]
}
},
"main": "./lib/web-search",
"version": "0.3.3",
"description": "Web search for Selected text in mobile view.",
"keywords": [],
"activationCommands": {
"atom-workspace": "web-search:search"
},
"repository": "https://github.com/nobuhito/atom-web-search",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.1.0"
}
}