-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.16 KB
/
package.json
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
{
"name": "solid-maplibre",
"version": "0.0.0-development",
"description": "SolidJS wrapper around MapLibre GL JS",
"type": "module",
"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": "vite --open",
"start": "npm run dev",
"build:tsup": "tsup",
"build": "npm-run-all check build:tsup",
"test": "vitest",
"check:types": "tsc -b",
"check:lint": "eslint .",
"check:test": "vitest run --coverage",
"check": "npm-run-all 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": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@solidjs/testing-library": "0.8.10",
"@testing-library/jest-dom": "6.6.3",
"@types/eslint": "9.6.1",
"@types/testing-library__jest-dom": "6.0.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"@vitest/coverage-v8": "2.1.4",
"babel-preset-solid": "1.9.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-solid": "0.14.3",
"husky": "9.1.6",
"jsdom": "25.0.1",
"jsdom-worker": "0.3.0",
"maplibre-gl": "4.7.1",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"solid-js": "1.9.3",
"tsup": "8.3.5",
"tsup-preset-solid": "2.2.0",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-solid": "2.10.2",
"vitest": "2.1.4"
}
}