-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "@devbookhq/splitter",
"version": "1.4.2",
"description": "Create resizable split views - like in VS Code",
"license": "MIT",
"homepage": "https://github.com/DevbookHQ/splitter",
"author": {
"name": "FoundryLabs, Inc.",
"email": "[email protected]",
"url": "https://usedevbook.com"
},
"bugs": "https://github.com/DevbookHQ/splitter",
"repository": {
"type": "git",
"url": "https://github.com/DevbookHQ/splitter"
},
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"scripts": {
"prepublishOnly": "rollup -c",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@rollup/plugin-babel": "^5.3.0",
"@types/node": "^12.20.4",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-is": "^17.0.3",
"autoprefixer": "^10.2.5",
"postcss": "^8.2.7",
"rollup": "^2.56.2",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.4.3"
},
"files": [
"lib",
"package.json",
"package-lock.json",
"README.md"
],
"keywords": [
"devbook",
"react",
"resize",
"split"
],
"dependencies": {
"react-is": "^17.0.2"
}
}