-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
46
47
{
"name": "panel-manager",
"description": "Provide an easy way to manage your panels.",
"version": "0.0.21",
"module": "es/index.js",
"main": "panel-manager.cjs.js",
"types": "es/index.d.ts",
"scripts": {
"dev": "vite",
"clean": "rm -rf ./es",
"build": "tnpm run clean && tsc && cp -rf src/index.css es/",
"prepublishOnly": "npm run build",
"serve": "vite preview",
"lint": "eslint src/**.tsx src/**.ts --fix"
},
"files": [
"dist",
"es",
"src"
],
"dependencies": {
"re-resizable": "^6.9.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"@vitejs/plugin-react-refresh": "^1.3.1",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.24.0",
"normalize.css": "^8.0.1",
"typescript": "^4.3.2",
"vite": "^2.4.2"
},
"license": "MIT"
}