@arenarium/maps 1.2.5 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +51 -94
package/package.json
CHANGED
|
@@ -1,96 +1,53 @@
|
|
|
1
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
|
-
"bunup": "^0.16.10",
|
|
54
|
-
"clean-package": "^2.2.0",
|
|
55
|
-
"eslint": "^9.39.1",
|
|
56
|
-
"eslint-config-prettier": "^10.1.8",
|
|
57
|
-
"eslint-plugin-svelte": "^3.13.1",
|
|
58
|
-
"mapbox-gl": "^3.17.0",
|
|
59
|
-
"maplibre-gl": "^5.14.0",
|
|
60
|
-
"prettier": "^3.7.4",
|
|
61
|
-
"prettier-plugin-svelte": "^3.4.0",
|
|
62
|
-
"publint": "^0.3.15",
|
|
63
|
-
"svelte-check": "^4.3.4",
|
|
64
|
-
"svelte-preprocess": "^6.0.3",
|
|
65
|
-
"typescript": "latest",
|
|
66
|
-
"typescript-eslint": "^8.48.1",
|
|
67
|
-
"vite": "^7.2.6"
|
|
68
|
-
},
|
|
69
|
-
"dependencies": {
|
|
70
|
-
"@arenarium/maps-core": "1.0.2",
|
|
71
|
-
"valibot": "^1.2.0",
|
|
72
|
-
"svelte": "^5.45.5"
|
|
73
|
-
},
|
|
74
|
-
"scripts": {
|
|
75
|
-
"prepack": "clean-package",
|
|
76
|
-
"postpack": "clean-package restore",
|
|
77
|
-
"lib_dev": "vite dev --host",
|
|
78
|
-
"lib_dev_browser": "vite dev --mode browser --host",
|
|
79
|
-
"lib_check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
80
|
-
"lib_check_watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
81
|
-
"lib_build": "NODE_ENV=production VITE_API_URL=https://maps.api.arenarium.dev bunup",
|
|
82
|
-
"lib_build_dev": "NODE_ENV=development VITE_API_URL=http://127.0.0.1:8787 bunup",
|
|
83
|
-
"lib_patch": "bun pm version patch --no-git-tag-version",
|
|
84
|
-
"lib_publish_public": "bun publish --access public",
|
|
85
|
-
"lib_build_patch_commit_publish": "bun run build && bun run lib_patch_push && bun run lib_publish_public",
|
|
86
|
-
"lib_preview": "vite preview"
|
|
87
|
-
},
|
|
88
|
-
"clean-package": {
|
|
89
|
-
"indent": 2,
|
|
90
|
-
"remove": [
|
|
91
|
-
"scripts",
|
|
92
|
-
"devDependencies",
|
|
93
|
-
"private"
|
|
94
|
-
]
|
|
95
|
-
}
|
|
2
|
+
"name": "@arenarium/maps",
|
|
3
|
+
"version": "1.2.6",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"author": "arenarium",
|
|
6
|
+
"description": "Visualize complex map markers clearly. A JavaScript library for effective display of map markers, compatible with MapLibre, Mapbox, and Google Maps.",
|
|
7
|
+
"homepage": "https://arenarium.dev",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"arenarium",
|
|
10
|
+
"maps",
|
|
11
|
+
"svelte"
|
|
12
|
+
],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./dist/main.js",
|
|
15
|
+
"module": "./dist/main.js",
|
|
16
|
+
"svelte": "./dist/main.js",
|
|
17
|
+
"types": "./dist/main.d.ts",
|
|
18
|
+
"unpkg": "./dist/main.js",
|
|
19
|
+
"jsdelivr": "./dist/main.js",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/main.d.ts",
|
|
23
|
+
"svelte": "./dist/main.js",
|
|
24
|
+
"import": "./dist/main.js",
|
|
25
|
+
"require": "./dist/main.js"
|
|
26
|
+
},
|
|
27
|
+
"./style.css": {
|
|
28
|
+
"import": "./dist/main.css",
|
|
29
|
+
"require": "./dist/main.css"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"!dist/**/*.test.*",
|
|
35
|
+
"!dist/**/*.spec.*"
|
|
36
|
+
],
|
|
37
|
+
"sideEffects": [
|
|
38
|
+
"**/*.css"
|
|
39
|
+
],
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@arenarium/maps-core": "1.0.2",
|
|
42
|
+
"valibot": "^1.2.0",
|
|
43
|
+
"svelte": "^5.45.5"
|
|
44
|
+
},
|
|
45
|
+
"clean-package": {
|
|
46
|
+
"indent": 2,
|
|
47
|
+
"remove": [
|
|
48
|
+
"scripts",
|
|
49
|
+
"devDependencies",
|
|
50
|
+
"private"
|
|
51
|
+
]
|
|
52
|
+
}
|
|
96
53
|
}
|