crumb-widget 1.0.0
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/LICENSE +21 -0
- package/README.md +48 -0
- package/dist/module.d.ts +22 -0
- package/dist/module.js +10135 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "crumb-widget",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist/module.js",
|
|
7
|
+
"dist/module.d.ts",
|
|
8
|
+
"dist/types.d.ts"
|
|
9
|
+
],
|
|
10
|
+
"module": "./dist/module.js",
|
|
11
|
+
"types": "./dist/module.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/module.js",
|
|
15
|
+
"types": "./dist/module.d.ts"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "vite dev",
|
|
20
|
+
"build": "vite build && vite build --config vite.lib.config.ts",
|
|
21
|
+
"build:lib": "vite build --config vite.lib.config.ts",
|
|
22
|
+
"preview": "vite preview",
|
|
23
|
+
"lint": "prettier --check vite.config.ts tsconfig.json src && eslint vite.config.ts src && svelte-check --tsconfig ./tsconfig.json",
|
|
24
|
+
"format": "prettier --write vite.config.ts src",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"test:watch": "vitest",
|
|
27
|
+
"test:ui": "vitest --ui",
|
|
28
|
+
"coverage": "vitest run --coverage",
|
|
29
|
+
"test:e2e": "playwright test",
|
|
30
|
+
"all": "npm run format && npm run lint && npm run test && npm run build"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@eslint/js": "^10.0.1",
|
|
34
|
+
"@playwright/test": "^1.59.1",
|
|
35
|
+
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
36
|
+
"@tailwindcss/vite": "^4.1.17",
|
|
37
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
38
|
+
"@testing-library/svelte": "^5.2.9",
|
|
39
|
+
"@testing-library/user-event": "^14.6.1",
|
|
40
|
+
"@tsconfig/svelte": "^5.0.6",
|
|
41
|
+
"@types/eslint": "^9.6.1",
|
|
42
|
+
"@types/leaflet": "^1.9.18",
|
|
43
|
+
"@types/node": "^25.2.0",
|
|
44
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
45
|
+
"autoprefixer": "^10.4.22",
|
|
46
|
+
"axe-playwright": "^2.2.2",
|
|
47
|
+
"eslint": "^10.0.0",
|
|
48
|
+
"eslint-config-prettier": "^10.1.8",
|
|
49
|
+
"eslint-plugin-svelte": "^3.13.0",
|
|
50
|
+
"jsdom": "^29.0.1",
|
|
51
|
+
"prettier": "^3.6.2",
|
|
52
|
+
"prettier-plugin-svelte": "^3.4.0",
|
|
53
|
+
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
54
|
+
"svelte": "^5.44.1",
|
|
55
|
+
"svelte-check": "^4.3.4",
|
|
56
|
+
"tailwindcss": "^4.1.17",
|
|
57
|
+
"tslib": "^2.8.1",
|
|
58
|
+
"typescript": "^5.9.3",
|
|
59
|
+
"typescript-eslint": "^8.48.0",
|
|
60
|
+
"vite": "^8.0.3",
|
|
61
|
+
"vite-plugin-css-injected-by-js": "^4.0.1",
|
|
62
|
+
"vite-plugin-dts": "^4.5.4",
|
|
63
|
+
"vitest": "^4.0.14"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@bmlt-enabled/svelte-spa-router": "^5.0.7",
|
|
67
|
+
"bmlt-query-client": "^1.0.7",
|
|
68
|
+
"globals": "^17.4.0",
|
|
69
|
+
"leaflet": "^1.9.4",
|
|
70
|
+
"localized-strings": "^2.0.3"
|
|
71
|
+
}
|
|
72
|
+
}
|