-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"name": "@developmentseed/stac-react",
"version": "1.0.0-alpha.2",
"description": "React components and hooks for building STAC-API front-ends",
"repository": "git@github.com:developmentseed/stac-react.git",
"authors": [
"Oliver Roick <oliver@roick.email>",
"Alice Rühl <alice.ruehl@gmail.com>"
],
"license": "MIT",
"type": "module",
"main": "./dist/stac-react.cjs",
"module": "./dist/stac-react.es.mjs",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"peerDependencies": {
"@tanstack/react-query": ">=4.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@tanstack/react-query": "^5.90.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/geojson": "^7946.0.16",
"@types/jest": "^30.0.0",
"@types/node": "^24.9.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.4.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"ts-jest": "^29.4.5",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^7.1.11",
"vite-plugin-dts": "^4.5.4"
},
"scripts": {
"lint": "eslint .",
"test": "jest",
"build": "tsc -b && vite build"
},
"packageManager": "yarn@4.10.3"
}