-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.06 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-beacon-hint",
"version": "0.0.15",
"description": "User Onboarding Component for React with Fully Configurable Options",
"main": "./lib/react-beacon-hint.umd.js",
"module": "./lib/react-beacon-hint.es.js",
"types": "./lib/index.d.ts",
"workspaces": [
"example",
"website"
],
"scripts": {
"install:husky": "husky install",
"build": "vite build",
"dev": "concurrently --kill-others -n Component,Test,Example,Website \"vite build --watch\" \"yarn test:watch\" \"yarn workspace example dev\" \"yarn workspace website start\"",
"test:watch": "vitest",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check \"**/*.+(ts|tsx|js|jsx|json|yml|yaml|css|md)\"",
"prettier:fix": "prettier --write \"**/*.+(ts|tsx|js|jsx|json|yml|yaml|css|md)\"",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix",
"release": "standard-version"
},
"exports": {
".": {
"import": "./lib/react-beacon-hint.es.js",
"require": "./lib/react-beacon-hint.umd.js"
},
"./lib/style.css": {
"import": "./lib/style.css",
"require": "./lib/style.css"
}
},
"keywords": [
"js",
"hint",
"beacon",
"react",
"guide",
"popover",
"popper",
"floating-ui",
"reactjs",
"component",
"onboarding",
"tour"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/moh3n9595/react-beacon-hint.git"
},
"homepage": "https://github.com/moh3n9595/react-beacon-hint#readme",
"bugs": {
"url": "https://github.com/moh3n9595/react-beacon-hint/issues"
},
"author": {
"name": "Mohsen Madani",
"email": "mohsenando@gmail.com"
},
"license": "MIT",
"packageManager": "yarn@3.3.1",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@floating-ui/react": "^0.15.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jsdom": "^20.0.1",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.26.2",
"concurrently": "^7.6.0",
"csstype": "^3.1.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-unused-imports": "^2.0.0",
"framer-motion": "8.0.2",
"husky": "^8.0.2",
"jsdom": "^20.0.3",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.57.1",
"standard-version": "^9.5.0",
"stylelint": "^14.16.1",
"stylelint-config-standard-scss": "^6.1.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.26.2"
},
"peerDependencies": {
"@floating-ui/react": ">=0.15",
"framer-motion": ">=6.5",
"react": ">=16.8",
"react-dom": ">=16.8"
},
"dependencies": {
"color-alpha": "^1.1.3",
"local-storage-fallback": "^4.1.2"
}
}