@stadiamaps/ferrostar-webcomponents 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +15 -2
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Ferrostar Web Components
|
|
2
|
+
|
|
3
|
+
Ferrostar is a modern SDK for building turn-by-turn navigation applications.
|
|
4
|
+
|
|
5
|
+
This package includes web components for integrating navigation into your web applications.
|
|
6
|
+
|
|
7
|
+
Refer to the [Ferrostar User Guide](https://stadiamaps.github.io/ferrostar/)
|
|
8
|
+
for more info and tutorials to get started!
|
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stadiamaps/ferrostar-webcomponents",
|
|
3
|
-
"
|
|
3
|
+
"collaborators": [
|
|
4
|
+
"Ian Wagner <ian@stadiamaps.com>",
|
|
5
|
+
"Jacob Fielding <jacob@rallista.app>",
|
|
6
|
+
"Luke Seelenbinder <luke@stadiamaps.com>"
|
|
7
|
+
],
|
|
8
|
+
"version": "0.1.1",
|
|
9
|
+
"license": "BSD-3-Clause",
|
|
4
10
|
"type": "module",
|
|
5
11
|
"main": "./dist/ferrostar-webcomponents.js",
|
|
6
12
|
"module": "./dist/ferrostar-webcomponents.js",
|
|
@@ -10,6 +16,7 @@
|
|
|
10
16
|
"files": [
|
|
11
17
|
"dist"
|
|
12
18
|
],
|
|
19
|
+
"types": "./dist/main.d.ts",
|
|
13
20
|
"scripts": {
|
|
14
21
|
"dev": "vite --config vite.config.site.ts",
|
|
15
22
|
"preview": "vite preview",
|
|
@@ -32,5 +39,11 @@
|
|
|
32
39
|
"typescript": "^5.2.2",
|
|
33
40
|
"vite": "^5.4.1",
|
|
34
41
|
"vitest": "^2.0.5"
|
|
35
|
-
}
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"navigation",
|
|
45
|
+
"routing",
|
|
46
|
+
"valhalla",
|
|
47
|
+
"osrm"
|
|
48
|
+
]
|
|
36
49
|
}
|