-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "react-text-selection-popover",
"version": "2.0.2",
"description": "A component for rendering popovers according to your current text selection",
"author": "Julian Krispel-Samsel",
"license": "MIT",
"repository": "juliankrispel/react-text-selection-popover",
"homepage": "https://juliankrispel.github.io/react-text-selection-popover/",
"main": "dist/index.js",
"dependencies": {
"use-text-selection": "^1.1.3"
},
"scripts": {
"build": "rm -rf dist && ./node_modules/.bin/tsc",
"prepublish": "npm run build",
"start": "parcel serve src/example/index.html",
"build:example": "rm -rf build-site && parcel build --public-url \"/react-text-selection-popover/\" -d \"build-site\" src/example/index.html",
"deploy": "npm run build:example && gh-pages -d build-site"
},
"peerDependencies": {
"react": "^16.8.0,^17.x,^18.x",
"react-dom": "^16.8.0,^17.x,^18.x"
},
"devDependencies": {
"@emotion/css": "^11.1.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"emotion": "^11.0.0",
"gh-pages": "^3.1.0",
"parcel": "^1.12.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typescript": "^4.1.3",
"typography": "^0.16.19"
},
"files": [
"dist"
]
}