-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.12 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
{
"name": "gtfs-sqljs",
"version": "0.8.0",
"description": "Load GTFS data into a SQLite database (sql.js / better-sqlite3 / op-sqlite / expo-sqlite) via a pluggable adapter",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./adapters/sql-js": {
"types": "./dist/adapters/sql-js/index.d.ts",
"default": "./dist/adapters/sql-js/index.js"
},
"./adapters/better-sqlite3": {
"types": "./dist/adapters/better-sqlite3/index.d.ts",
"default": "./dist/adapters/better-sqlite3/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"docs:build": "typedoc",
"test:mobility-db": "tsx tests/test-mobility-database-feeds.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"gtfs",
"transit",
"sqlite",
"sql.js",
"better-sqlite3",
"op-sqlite",
"expo-sqlite",
"browser",
"nodejs",
"react-native"
],
"author": "Théophile Helleboid/SysDevRun",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sysdevrun/gtfs-sqljs.git"
},
"dependencies": {
"jszip": "^3.10.1",
"papaparse": "^5.5.3",
"protobufjs": "^8.0.0"
},
"peerDependencies": {
"better-sqlite3": ">=10",
"sql.js": "1.x"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"sql.js": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^25.3.1",
"@types/papaparse": "^5.5.0",
"@types/sql.js": "^1.4.9",
"better-sqlite3": "^11.3.0",
"eslint": "^9.39.3",
"sql.js": "1.13.0",
"tsup": "^8.0.1",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}