forked from Nicolapps/mapkit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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
{
"name": "mapkit-react",
"version": "1.6.1",
"description": "A React wrapper for MapKit JS",
"author": "Nicolas Ettlin",
"license": "MIT",
"type": "module",
"homepage": "https://nicolapps.github.io/mapkit-react/",
"repository": {
"type": "git",
"url": "https://github.com/Nicolapps/mapkit-react"
},
"bugs": {
"url": "https://github.com/Nicolapps/mapkit-react/issues"
},
"scripts": {
"build": "vite build",
"lint": "npx eslint src --ext .js,.jsx,.ts,.tsx",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublishOnly": "npm run build"
},
"main": "dist/mapkit-react.umd.js",
"module": "dist/mapkit-react.js",
"exports": {
".": {
"import": "./dist/mapkit-react.js",
"require": "./dist/mapkit-react.umd.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@types/react-dom": "^18.0.10",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/addon-storysource": "^6.5.15",
"@storybook/builder-webpack4": "^6.5.15",
"@storybook/manager-webpack4": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/testing-library": "^0.0.13",
"@types/apple-mapkit-js-browser": "^5.65.3",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitejs/plugin-react": "^3.0.0",
"babel-loader": "^8.3.0",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.8",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.3",
"vite-plugin-dts": "^1.7.1"
}
}