-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.08 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.08 KB
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
{
"name": "@versatiles/server",
"version": "1.6.7",
"description": "A server for VersaTiles",
"bin": {
"versatiles-server": "./dist/index.js"
},
"prefix": "./",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"static"
],
"scripts": {
"build": "npm run build-node && npm run doc",
"build-node": "rm -rf dist && tsc -p tsconfig.build.json && chmod +x dist/index.js",
"check": "npm run lint && npm run build && npm run test",
"doc": "npm run doc-command && npm run doc-graph",
"doc-command": "vrt doc-command versatiles-server | vrt doc-insert README.md '## Options'",
"doc-graph": "vrt deps-graph | vrt doc-insert README.md '## Dependency Graph'",
"lint": "eslint . --color",
"prepack": "npm run build",
"release": "vrt release-npm",
"start": "tsx src/index.ts",
"test-coverage": "vitest --run --coverage",
"test": "vitest --run",
"upgrade": "vrt deps-upgrade"
},
"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 <node@yetzt.me>, Michael Kreil <versatiles@michael-kreil.de>",
"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.4.1",
"@versatiles/style": "^5.9.5",
"commander": "^14.0.3",
"open": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@versatiles/release-tool": "^2.7.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}