forked from sysdevrun/react-gtfs-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.56 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
{
"name": "react-gtfs-selector",
"version": "0.2.2",
"description": "React component to select a GTFS source via file drag-and-drop or online search",
"author": "Théophile Helleboid <contact@sys-dev-run.fr>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sysdevrun/react-gtfs-selector"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/papaparse": "^5.5.2",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"jsdom": "^25.0.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.0"
},
"keywords": [
"react",
"gtfs",
"transit",
"transport",
"component"
],
"dependencies": {
"papaparse": "^5.5.3"
}
}