-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 910 Bytes
/
package.json
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
{
"name": "ol-feature-frenzy",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint examples",
"test": "npm run lint",
"build": "slidev build",
"start": "slidev",
"export": "slidev export"
},
"dependencies": {
"@iconify-json/twemoji": "^1.2.1",
"@slidev/cli": "^0.50.0-beta.5",
"@slidev/theme-default": "^0.25.0",
"colormap": "^2.3.2",
"eslint": "^8.57.1",
"eslint-config-openlayers": "^19.0.0",
"ol": "^10.3.0",
"ol-mapbox-style": "^12.3.5",
"proj4": "^2.14.0",
"shiki": "^1.22.2",
"vue": "^3.5.12"
},
"eslintConfig": {
"extends": "openlayers",
"rules": {
"import/no-unresolved": [
"error",
{
"ignore": [
"\\?url"
]
}
],
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "^map"
}
]
}
}
}