feat: make road compiler standalone

This commit is contained in:
2026-08-25 17:53:49 +08:00
parent aadd45bcad
commit 8e79790261
8 changed files with 588 additions and 2 deletions

View File

@@ -1,10 +1,18 @@
{
"name": "@osm-asset/road-compiler",
"version": "0.1.0",
"private": true,
"private": false,
"type": "commonjs",
"main": "src/index.js",
"bin": {
"road-compiler": "bin/road-compiler.js"
},
"scripts": {
"test": "node test/index.js"
"test": "node test/index.js",
"test:road-parity": "node test/road-parity.js",
"road:workbench": "node bin/road-workbench.js"
},
"dependencies": {
"ol": "10.10.0"
}
}