forked from avaneeshtripathi/react-dice-roll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "react-dice-roll",
"version": "1.2.2",
"description": "A highly customizable dice roll package built in react.",
"scripts": {
"build": "rm -rf dist && rollup -c",
"start": "rollup -c -w",
"prepublish": "yarn build",
"tsc": "tsc --emitDeclarationOnly"
},
"keywords": [
"dice",
"roll",
"react"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/avaneeshtripathi/react-dice-roll"
},
"homepage": "https://github.com/avaneeshtripathi",
"bugs": {
"url": "https://github.com/avaneeshtripathi/react-dice-roll/issues"
},
"author": "Avaneesh Tripathi",
"license": "MIT",
"files": [
"dist"
],
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"rollup": "^2.25.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^3.9.7"
}
}