-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
{
"name": "@versatiles/server",
"version": "1.5.0",
"description": "A server for VersaTiles",
"bin": {
"versatiles-server": "./dist/index.js"
},
"prefix": "./",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"static"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && chmod +x dist/index.js",
"check": "npm run lint && npm run build && npm run test",
"doc": "vrt cmd2md versatiles-server | vrt insertmd README.md '## Options'",
"lint": "eslint . --color",
"prepack": "npm run build && npm run doc",
"release": "npx vrt release-npm",
"start": "tsx src/index.ts",
"test-coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"upgrade": "npm-check-updates -u && rm -f package-lock.json; rm -rf node_modules; npm i && npm update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/versatiles-org/node-versatiles.git"
},
"homepage": "https://github.com/versatiles-org/node-versatiles/blob/main/versatiles-server/README.md",
"type": "module",
"author": "yetzt <[email protected]>, Michael Kreil <[email protected]>",
"license": "Unlicense",
"engines": {
"node": ">= 18"
},
"keywords": [
"cloudtiles",
"geo",
"gis",
"map",
"maps",
"mapserver",
"maptiles",
"mvt",
"opencloudtiles",
"osm",
"pbf",
"tile",
"tiles",
"tileserver",
"vectortiles",
"versatiles"
],
"dependencies": {
"@versatiles/container": "^1.2.3",
"@versatiles/style": "^5.0.0",
"commander": "^13.0.0",
"open": "^10.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@versatiles/release-tool": "^1.2.6",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"npm-check-updates": "^17.1.13",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
}
}