-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 933 Bytes
/
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
{
"name": "react-userlane",
"version": "1.0.1",
"description": "Userlane.com wrapper for react",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm t && npm run build"
},
"keywords": [
"react",
"userlane",
"react-userlane"
],
"author": {
"name": "Felix Wostal",
"url": "https://felixwostal.de"
},
"bugs": {
"url": "https://github.com/fel1xw/react-userlane/issues"
},
"homepage": "https://github.com/fel1xw/react-userlane#readme",
"license": "MIT",
"devDependencies": {
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"typescript": "^3.7.4"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}