-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "react-draggable-layer",
"version": "1.0.10",
"description": "基于 TypeScript + React Hooks 开发的可拖拽弹层",
"main": "lib/index.js",
"files": [
"lib/"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linxiangjun/react-draggable-layer.git"
},
"keywords": [
"React",
"TypeScript",
"Draggable Layer"
],
"author": "linxiangjun <www.linxiangjun.com> (https://github.com/linxiangjun/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/linxiangjun/react-draggable-layer/issues"
},
"homepage": "https://github.com/linxiangjun/react-draggable-layer#readme",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"@emotion/core": "^10.0.27"
},
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/preset-env": "7.8.3",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@emotion/core": "^10.0.27",
"@types/react": "16.9.11",
"react": "16.12.0",
"react-dom": "16.12.0",
"typescript": "3.7.5"
}
}