forked from neocturne/react-multi-split-pane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
57
{
"name": "react-multi-split-pane",
"description": "React multi split-pane component",
"main": "dist/index.js",
"source": "src/index.ts",
"files": [
"dist",
"!dist/**/*.map"
],
"version": "0.3.3",
"repository": {
"type": "git",
"url": "https://github.com/neoraider/react-multi-split-pane"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/neoraider/react-multi-split-pane"
},
"homepage": "https://github.com/neoraider/react-multi-split-pane",
"author": "Matthias Schiffer <[email protected]>",
"keywords": [
"react",
"react-component",
"split-pane",
"multi-split-pane",
"react-split-pane",
"react-multi-split-pane",
"typescript"
],
"scripts": {
"prebuild": "yarn run clean",
"clean": "rimraf dist",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint 'src/**/*'",
"release": "yarn version --message \"$npm_package_name v%s\""
},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.1",
"react-dom": "^16.14.0 || ^17.0.1"
},
"devDependencies": {
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
}
}