-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.6 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.6 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
{
"name": "@tracktor/map",
"description": "A React library to easily display map with multiple tools",
"private": false,
"license": "UNLICENSED",
"version": "1.8.18",
"type": "module",
"main": "dist/main.umd.cjs",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"scripts": {
"sandbox": "vite --config vite.config.sandbox.ts",
"build:sandbox": "vite build --config vite.config.sandbox.ts",
"deploy:sandbox": "bun run build:sandbox && cp dist-sandbox/index.html dist-sandbox/404.html && gh-pages -d dist-sandbox",
"build": "bunx tsc && bunx vite build",
"lint": "bunx biome check --diagnostic-level=error . && bunx tsc --noEmit --incremental",
"lint:fix": "bunx biome check . --write",
"prepublishOnly": "bun run build",
"preview": "bunx vite preview",
"release": "bun run build && bun publish --access public",
"version": "bunx standard-version",
"prepare": "husky",
"test": "bun test --preload ./test/setup.ts",
"test:watch": "bun test --watch --preload ./test/setup.ts"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@mui/icons-material": "^5.17.1",
"@mui/x-license": "^8.6.0",
"@tracktor/design-system": "^4.33.3",
"@tracktor/react-utils": "^1.28.3",
"@types/react-map-gl": "^6.1.8",
"mapbox-gl": "^3.20.0",
"react-map-gl": "7.0.20"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@tracktor/biome-config-react": "^1.4.0",
"@types/jsdom": "^27.0.0",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^22.14.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"bun-types": "^1.3.1",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.9.4",
"standard-version": "^9.5.0",
"typescript": "~5.8.3",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "8.0.3",
"vite-plugin-css-injected-by-js": "^3.5.2"
},
"peerDependencies": {
"@mui/icons-material": "*",
"@mui/x-license": "*",
"@tracktor/design-system": ">=4.0.0",
"@tracktor/react-utils": ">=1.0.0",
"mapbox-gl": ">=3.0.0",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"engines": {
"bun": ">=1.1.0"
},
"packageManager": "bun@1.1.34"
}