-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.09 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
87
88
89
90
91
{
"version": "3.2.1",
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "raycast-norwegian-public-transport",
"title": "Norwegian Public Transport",
"keywords": [
"departures",
"avganger",
"norway",
"norge",
"public transport",
"kollektivtransport",
"travel",
"reise",
"entur",
"journey planner",
"real-time",
"sanntid"
],
"description": "Real-time departures for Norwegian public transport. Data made available by Entur.",
"icon": "command-icon.png",
"author": "rosvik",
"categories": [
"Web",
"Data",
"Other"
],
"license": "MIT",
"commands": [
{
"name": "departures",
"title": "Departures",
"description": "Search for public transport departures from any stop place in Norway",
"mode": "view"
},
{
"name": "trips",
"title": "Search Trips",
"description": "Get trip suggestions using public transportation in Norway",
"mode": "view"
}
],
"preferences": [
{
"type": "dropdown",
"name": "web-planner",
"title": "Travel Planner for Quick Access",
"description": "Choose your preferred web travel planner to use for quick access.",
"data": [
{
"title": "Reis Nordland",
"value": "reis"
},
{
"title": "FRAM",
"value": "fram"
},
{
"title": "Svipper",
"value": "svipper"
},
{
"title": "AtB (Beta)",
"value": "atb"
}
],
"default": "reis",
"required": false
}
],
"dependencies": {
"@raycast/api": "^1.88.4",
"@raycast/utils": "^1.18.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@raycast/eslint-config": "1.0.11",
"@types/node": "22.10.5",
"@types/react": "18.3.12",
"eslint": "^8.57.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}