-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.34 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.34 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
{
"name": "solid-maplibre",
"version": "0.0.0-development",
"description": "SolidJS wrapper around MapLibre GL JS",
"type": "module",
"engines": {
"node": ">=18",
"pnpm": "^10.0.0"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"typesVersions": {},
"exports": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "pnpm run --filter example dev",
"start": "pnpm run dev",
"build": "tsup",
"postbuild": "pnpm run check",
"test": "vitest",
"check:types": "tsc -b",
"check:lint": "eslint .",
"check:test": "vitest run --coverage",
"check:example": "pnpm run --filter example check",
"check": "pnpm run \"/^check:.*/\"",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/shishkin/solid-maplibre.git"
},
"homepage": "https://github.com/shishkin/solid-maplibre",
"keywords": [
"solidjs",
"maplibre"
],
"author": "Sergey Shishkin <sergey@shishkin.org>",
"license": "MIT",
"peerDependencies": {
"maplibre-gl": "*",
"solid-js": "*"
},
"devDependencies": {
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.2.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@solidjs/testing-library": "0.8.10",
"@testing-library/jest-dom": "6.9.1",
"@types/eslint": "9.6.1",
"@types/geojson": "^7946.0.16",
"@typescript-eslint/eslint-plugin": "8.49.0",
"@typescript-eslint/parser": "8.49.0",
"@vitest/coverage-v8": "4.0.15",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-solid": "0.14.5",
"husky": "9.1.7",
"jsdom": "27.3.0",
"jsdom-worker": "0.3.0",
"maplibre-gl": "5.14.0",
"prettier": "3.7.4",
"semantic-release": "25.0.2",
"solid-js": "1.9.10",
"tsup": "8.5.1",
"tsup-preset-solid": "2.2.0",
"typescript": "5.9.3",
"vite-plugin-solid": "2.11.10",
"vitest": "4.0.15"
},
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501"
}