-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "solid-leaflet",
"version": "0.0.1",
"description": "SolidJS components for Leaflet",
"keywords": [
"solid",
"solid-js",
"leaflet"
],
"sideEffects": false,
"homepage": "https://github.com/andi23rosca/solid-leaflet",
"bugs": {
"url": "https://github.com/andi23rosca/solid-leaflet/issues",
"email": "andi23rosca+solid-leaflet@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/andi23rosca/solid-leaflet.git"
},
"author": "Andi Rosca <andi23rosca@gmail.com> (https://godoffrontend.com)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.jsx",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf ./dist",
"dev": "vite",
"build": "yarn clean && vite build && tsc"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/leaflet": "^1.9.0",
"babel-preset-solid": "^1.6.6",
"leaflet": "^1.9.3",
"rollup": "^2.58.0",
"solid-js": "^1.6.6",
"typescript": "^4.4.4",
"vite": "^4.0.3",
"vite-plugin-solid": "^2.5.0"
},
"peerDependencies": {
"leaflet": "^1.9.3",
"solid-js": "^1.6.6"
}
}