-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.92 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
{
"name": "@sarpere/heatmapjs-react",
"description": "Heatmapjs React bindings",
"private": false,
"version": "0.2.0",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"main": "./dist/heatmapjs-react.umd.js",
"module": "./dist/heatmapjs-react.es.js",
"exports": {
".": {
"import": "./dist/heatmapjs-react.es.js",
"require": "./dist/heatmapjs-react.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"postversion": "git push && git push --tags",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"heatmapjs": "https://gitpkg.now.sh/sarpere/heatmapjs-react/heatmapjs\\?master"
},
"peerDependencies": {
"react": " >=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-vite": "^0.2.5",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.7.23",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"babel-loader": "^8.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.6.6",
"vitest": "^0.23.4"
},
"keywords": [
"Heatmapjs",
"React",
"Heatmapjs react bindings",
"Heatmapjs-react"
],
"author": {
"email": "sarperekinci@hotmail.com",
"name": "Sarper Ekinci",
"url": "https://sarpere.com"
},
"repository": {
"type": "git",
"url": "https://github.com/sarpere/heatmapjs-react"
}
}