-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.77 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": "gridlook",
"version": "1.4.1",
"license": "MIT",
"scripts": {
"dev": "vite --port 3000",
"build": "vue-tsc -b && vite build",
"preview": "vite preview --port 5050",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint src tests",
"lint-ci": "eslint src tests --max-warnings 0",
"lint:fix": "eslint src tests --fix",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
],
"!(*package-lock).json": [
"prettier --write"
]
},
"type": "module",
"dependencies": {
"@eeholmes/zarrita-pcodec": "github:eeholmes/zarrita-pcodec",
"@fortawesome/fontawesome-free": "^7.2.0",
"@hscmap/healpix": "^1.4.12",
"@primevue/themes": "^4.5.4",
"@vuepic/vue-datepicker": "14.0.0",
"@vueuse/core": "^14.3.0",
"axios": "^1.18.0",
"bulma": "^1.0.4",
"canvas-txt": "^4.1.1",
"chart.js": "^4.5.1",
"chartjs-plugin-annotation": "^3.1.0",
"d3-delaunay": "^6.0.4",
"d3-geo": "^3.1.1",
"d3-geo-projection": "^4.0.0",
"dayjs": "^1.11.21",
"fflate": "^0.8.3",
"geokdbush": "2.1.0",
"geotiff": "^3.0.5",
"humanize-duration": "^3.33.2",
"icechunk-js": "^0.4.0",
"kdbush": "4.1.0",
"pinia": "^3.0.4",
"primevue": "^4.5.5",
"proj4": "^2.20.9",
"qrcode": "^1.5.4",
"quick-lru": "^7.3.0",
"three": "^0.184",
"three-conic-polygon-geometry": "^2.1.3",
"three-geojson-geometry": "^2.1.1",
"vue": "^3.5.38",
"vue-json-pretty": "^2.6.0",
"vue-router": "^5.1.0",
"vue3-select-component": "^1.0.0",
"zarrita": "^0.7.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/d3-delaunay": "^6.0.4",
"@types/d3-geo": "^3.1.0",
"@types/geojson": "7946.0.16",
"@types/humanize-duration": "^3.27.4",
"@types/node": "~24",
"@types/qrcode": "^1.5.6",
"@types/three": "0.184.1",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/tsconfig": "0.9.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-boundaries": "^6.0.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-vue": "10.9",
"globals": "^17.6.0",
"glslify": "^7.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4",
"sass": "~1.89.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vite-plugin-glsl": "^1.6.0",
"vitest": "^4.1.9",
"vue-tsc": "^3.2.7"
},
"engines": {
"node": ">=24.16.0"
}
}