fast-osmpbf-js 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 +2 -0
- package/package.json +33 -36
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@ fast-osmpbf-js
|
|
|
3
3
|
A library for reading OpenStreetMap files ([*.osm.pbf](https://wiki.openstreetmap.org/wiki/PBF_Format)).
|
|
4
4
|
It is using NodeJS bindings for the high-performance Rust library [fast-osmpbf](https://github.com/QuodEstDubitandum/fast-osmpbf).
|
|
5
5
|
|
|
6
|
+
[](https://www.npmjs.com/package/fast-osmpbf-js)
|
|
7
|
+
|
|
6
8
|
## Installation
|
|
7
9
|
|
|
8
10
|
```bash
|
package/package.json
CHANGED
|
@@ -1,37 +1,34 @@
|
|
|
1
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
|
-
"optionalDependencies": {}
|
|
37
|
-
}
|
|
2
|
+
"name": "fast-osmpbf-js",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.1.1",
|
|
5
|
+
"description": "Node.js bindings for the fast-osmpbf Rust library",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Daniel Steblin",
|
|
8
|
+
"email": "d.steblin.dev@gmail.com"
|
|
9
|
+
},
|
|
10
|
+
"main": "index.js",
|
|
11
|
+
"types": "wrapper.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"index.js",
|
|
14
|
+
"wrapper.d.ts",
|
|
15
|
+
"index.node",
|
|
16
|
+
"index.d.ts"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"registry": "https://registry.npmjs.org/",
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"artifacts": "napi artifacts",
|
|
24
|
+
"build": "napi build --platform --release"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT OR Apache-2.0",
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@napi-rs/cli": "^3.4.1",
|
|
29
|
+
"@types/node": "^24.3.0"
|
|
30
|
+
},
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=16"
|
|
33
|
+
}
|
|
34
|
+
}
|