-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "@requestly-ui/split-pane",
"version": "0.1.0",
"description": "Split view to show two components side-by-side",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist && rollup -c",
"watch": "rm -rf dist && rollup -cw",
"type-check": "tsc --noEmit --pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/requestly/requestly-ui.git"
},
"author": {
"name": "Requestly",
"email": "contact@requestly.io",
"url": "https://requestly.io/"
},
"license": "Apache-2.0",
"dependencies": {
"react-split": "^2.0.14"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/react": "^18.0.0",
"commonjs": "^0.0.1",
"node-sass": "^8.0.0",
"rollup": "^3.30.0",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^18.0.0"
}
}