-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.06 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
{
"name": "trias-js",
"author": "tinsever",
"repository": {
"type": "git",
"url": "https://github.com/t2sever/trias-js"
},
"version": "0.0.1",
"description": "TypeScript client for TRIAS 1.2 passenger information endpoints",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"check": "tsc --noEmit",
"prepublishOnly": "npm run check && npm test && npm run build"
},
"keywords": [
"trias",
"public-transport",
"routing",
"xml"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsdown": "^0.21.4",
"typescript": "^5.9.2",
"vitest": "^4.0.17"
},
"dependencies": {
"fast-xml-parser": "^5.2.5"
}
}