-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "react-useoverlay",
"version": "0.7.1",
"homepage": "https://ned.im/react-useoverlay",
"license": "MIT",
"description": "for creating floating components easily",
"main": "dist/react-useoverlay.cjs.js",
"module": "dist/react-useoverlay.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"dev": "run-p dev:lib dev:demo dev:docs",
"dev:lib": "rollpkg watch",
"dev:demo": "npm run dev --prefix demo",
"dev:docs": "npm run dev --prefix devdocs",
"build": "run-s build:lib build:gh",
"build:lib": "rollpkg build",
"build:gh": "npm run export --prefix devdocs",
"prepublishOnly": "npm run lint && npm run build",
"lint": "eslint src"
},
"peerDependencies": {
"@floating-ui/react-dom-interactions": ">=0.6.6",
"framer-motion": ">=6.3.13",
"react": ">=16.8"
},
"devDependencies": {
"@floating-ui/react-dom-interactions": "^0.6.6",
"@types/react": "^18.0.14",
"framer-motion": "^6.3.13",
"npm-run-all": "^4.1.5",
"react": "file:devdocs/node_modules/react",
"react-dom": "^18.2.0",
"rollpkg": "^0.5.7",
"typescript": "^4.7.4"
},
"keywords": [
"floating",
"overlay",
"tooltip",
"modal",
"drawer"
],
"prettier": "rollpkg/configs/prettier.json",
"eslintConfig": {
"ignorePatterns": [
"docs/**/*"
],
"extends": [
"./node_modules/rollpkg/configs/eslint"
]
},
"repository": {
"type": "git",
"url": "git://github.com/needim/react-useoverlay.git"
},
"author": {
"name": "Nedim Arabacı",
"url": "http://ned.im"
}
}