-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "react-openlayers",
"version": "10.5.1",
"description": "React + OpenLayers",
"author": "Allen Kim",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "storybook dev -p 6006",
"libtest": "npm run build:lib && vite -c src/lib-test/vite.config.ts --open",
"build": "npm run build:lib && npm run build:storybook",
"build:lib": "tsup",
"build:storybook": "storybook build",
"lint": "eslint src --fix",
"types": "tsc --noEmit",
"prepublishOnly": "npm run build:lib"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/allenhwkim/react-openlayers"
},
"homepage": "https://allenhwkim.github.io/react-openlayers/?path=/docs/intro--docs",
"bugs": {
"url": "https://github.com/allenhwkim/react-openlayers/issues"
},
"license": "MIT",
"peerDependencies": {
"ol": "^10.5.0",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@storybook/addon-docs": "^8.6.12",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/react-vite": "^8.6.12",
"@storybook/test": "^8.6.12",
"@types/geojson": "^7946.0.16",
"@types/node": "^22.13.4",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^9.20.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^0.12.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"msw": "^2.3.0",
"msw-storybook-addon": "^2.0.3",
"prop-types": "^15.8.1",
"remark-gfm": "^4.0.1",
"storybook": "^8.6.12",
"tsup": "^8.5.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "^6.3.5"
}
}