-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "@rsuite/enhanced",
"version": "1.0.0",
"description": "Make the best use of RSuite",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc --outDir lib && tsc --outDir es && cp -R src/styles lib/styles",
"prebuild": "rm -rf lib && rm -rf es",
"prepublishOnly": "npm run build",
"start": "tsc --watch",
"test": "echo \"No test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsuite/enhanced.git"
},
"keywords": [
"rsuite"
],
"author": "Doma <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsuite/enhanced/issues"
},
"homepage": "https://github.com/rsuite/enhanced#readme",
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.34",
"rsuite": "^4.3.4",
"typescript": "^3.8.3"
},
"dependencies": {
"lodash": "^4.17.15"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rsuite": "^4.0.0"
}
}