-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.63 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.63 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "dvbjs",
"version": "7.0.0",
"description": "query Dresden's public transport system for current bus- and tram stop data",
"keywords": [
"bus",
"dresden",
"dvb",
"public transport",
"tram"
],
"homepage": "https://github.com/offenesdresden/dvbjs",
"readme": "https://github.com/offenesdresden/dvbjs/blob/master/README.md",
"bugs": {
"url": "https://github.com/offenesdresden/dvbjs/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/offenesdresden/dvbjs.git"
},
"license": "MIT",
"author": {
"name": "Kilian Koeltzsch",
"email": "me@kilian.io",
"url": "http://kilian.io"
},
"contributors": [
{
"name": "Florian Schmidt",
"email": "florian.schmidt.1994@icloud.com",
"url": "https://github.com/florianschmidt1994"
},
{
"name": "Hannes Rosenbauer",
"email": "hannes.rosenbauer@gmail.com",
"url": "https://github.com/rebugger"
},
{
"name": "Andreas Hippler",
"email": "andreas@tabaro.de",
"url": "https://github.com/ronhippler"
},
{
"name": "Jens Maus",
"email": "mail@jens-maus.de",
"url": "https://github.com/jens-maus"
},
{
"name": "mimimi1968",
"url": "https://github.com/mimimi1968"
},
{
"name": "Benjamin Reim",
"email": "benj.reim@gmail.com",
"url": "https://github.com/BenReim"
},
{
"name": "Adwirawien",
"url": "https://github.com/Adwirawien"
},
{
"name": "Francis Doege",
"email": "hello@francisdoege.com",
"url": "https://github.com/justusjonas74"
}
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run typecheck && tsdown",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ test/",
"lint:fix": "biome check --write src/ test/",
"format": "biome format --write src/ test/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"proj4": "^2.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/node": "^20.9.4",
"@types/proj4": "^2.5.0",
"@vitest/coverage-v8": "^4.0.18",
"tsdown": "^0.21.1",
"typescript": "^5.3.2",
"vitest": "^4.0.18"
}
}