-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.69 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
{
"name": "crumb-widget",
"version": "1.6.0",
"description": "Embeddable NA meeting finder widget for BMLT root servers, with list and map views, filtering, geolocation, and i18n",
"keywords": [
"bmlt",
"narcotics-anonymous",
"meeting-finder",
"widget",
"embeddable",
"svelte",
"leaflet"
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bmlt-enabled/crumb-widget.git"
},
"files": [
"dist/module.js",
"dist/module.d.ts"
],
"module": "./dist/module.js",
"types": "./dist/module.d.ts",
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.js"
}
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build:lib": "vite build --config vite.lib.config.ts",
"preview": "vite preview",
"lint": "prettier --check vite.config.ts vite.lib.config.ts vite.shared.ts tsconfig.json src && eslint vite.config.ts vite.lib.config.ts vite.shared.ts src && svelte-check --tsconfig ./tsconfig.json",
"format": "prettier --write vite.config.ts vite.lib.config.ts vite.shared.ts tsconfig.json src",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"docs:api": "typedoc",
"all": "npm run format && npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/svelte": "^5.3.1",
"@tsconfig/svelte": "^5.0.8",
"@types/leaflet": "^1.9.21",
"@types/node": "^26.1.0",
"@vitest/coverage-v8": "^5.0.0",
"axe-playwright": "^2.2.2",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.6.0",
"jsdom": "^30.0.1",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.0.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"svelte": "^5.55.9",
"svelte-check": "^4.4.8",
"svelte-eslint-parser": "^1.7.1",
"tailwindcss": "^4.3.0",
"typedoc": "^0.28.19",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.4",
"unplugin-dts": "^1.0.1",
"vite": "^8.0.14",
"vite-plugin-css-injected-by-js": "^5.0.1",
"vitest": "^5.0.0"
},
"dependencies": {
"@bmlt-enabled/svelte-spa-router": "^5.2.2",
"bmlt-query-client": "^1.4.2"
},
"peerDependencies": {
"leaflet": "^1.9.4"
},
"engines": {
"node": ">=22"
},
"allowScripts": {
"fsevents@2.3.2": true,
"fsevents@2.3.3": true
}
}