forked from radiantearth/stac-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.82 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.82 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@radiantearth/stac-browser",
"version": "5.0.0-beta.1",
"type": "module",
"description": "A full-fledged UI in Vue for browsing and searching static STAC catalogs and STAC APIs.",
"main": "src/main.js",
"scripts": {
"start": "vite",
"build": "vite build",
"build:preview": "vite build && vite preview",
"build:report": "vite build --mode report",
"build:minimal": "vite build --mode minimal",
"lint": "eslint --fix src",
"i18n:fields": "node helpers/fields_locales.js",
"test": "npm run test:e2e",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report"
},
"bugs": {
"url": "https://github.com/radiantearth/stac-browser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/radiantearth/stac-browser.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/m-mohr"
},
"author": "Radiant Earth Foundation <hello@radiant.earth>",
"contributors": [
{
"name": "Seth Fitzsimmons"
},
{
"name": "Rob Emanuele"
},
{
"name": "Matthias Mohr"
}
],
"license": "ISC",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.2.2",
"@musement/iso-duration": "^1.0.0",
"@radiantearth/stac-fields": "~1.5.7",
"@radiantearth/stac-migrate": "~2.0.2",
"@turf/mask": "^7.2.0",
"@vuepic/vue-datepicker": "^12.1.0",
"ajv-i18n": "^4.2.0",
"axios": "^1.2.0",
"bootstrap": "^5.3.8",
"bootstrap-vue-next": "^0.42.0",
"chart.js": "^4.3.0",
"commonmark": "^0.31.2",
"highlight.js": "^11.11.1",
"oidc-client-ts": "^3.0.1",
"ol": "~10.7.0",
"ol-stac": "^1.1.0",
"proj4": "^2.15.0",
"remove-markdown": "^0.6.2",
"stac-js": "~0.2.1",
"stac-node-validator": "2.0.0-rc.2",
"streamsaver-js": "^2.0.7",
"v-clipboard": "3.0.0-next.1",
"vue": "^3.5.22",
"vue-chartjs": "^5.2.0",
"vue-i18n": "^11.2.0",
"vue-multiselect": "^3.3.1",
"vue-router": "^5.0.1",
"vuex": "^4.1.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@iconify-json/bi": "^1.2.6",
"@playwright/test": "^1.57.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/compiler-sfc": "^3.5.22",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.7.0",
"globals": "^17.2.0",
"rollup-plugin-visualizer": "^6.0.5",
"sass": "^1.26.5",
"unplugin-icons": "^23.0.1",
"unplugin-vue-components": "^31.0.0",
"vite": "^7.2.2",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-node-polyfills": "^0.25.0"
},
"optionalDependencies": {
"ol-mapbox-style": "~13.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}