-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.96 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.96 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
{
"name": "maplibre-versatiles-styler",
"version": "1.2.1",
"type": "module",
"main": "dist/maplibre-versatiles-styler.umd.cjs",
"module": "dist/maplibre-versatiles-styler.js",
"types": "dist/maplibre-versatiles-styler.d.ts",
"exports": {
".": {
"types": "./dist/maplibre-versatiles-styler.d.ts",
"import": "./dist/maplibre-versatiles-styler.js",
"require": "./dist/maplibre-versatiles-styler.umd.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && vite build",
"check": "npm run format && npm run typecheck && npm run lint && npm run build && npm run test",
"dev": "vite",
"format:check": "prettier --check .",
"format": "prettier --write --log-level warn .",
"lint": "eslint --color .",
"prepack": "npm run build",
"prepare": "husky",
"preview": "vite preview",
"release": "vrt release-npm",
"screenshots": "playwright test --config=playwright.screenshots.config.ts",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:unit": "vitest run",
"test": "npm run test:unit && npm run test:e2e",
"typecheck": "svelte-check --tsconfig ./tsconfig.json && tsc --noEmit",
"upgrade": "vrt deps-upgrade"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/node": "^25.5.2",
"@versatiles/release-tool": "^2.7.5",
"@versatiles/style": "^5.10.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.2.0",
"eslint-plugin-svelte": "^3.17.0",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"maplibre-gl": "^5.22.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"sass-embedded": "^1.99.0",
"svelte": "^5.55.1",
"svelte-check": "^4.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.2"
}
}