-
-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.01 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "splitpanes",
"version": "4.1.2",
"description": "A Vue.js reliable, simple and touch-ready panes splitter / resizer",
"author": "Antoni Andre <antoniandre.web@gmail.com>",
"homepage": "https://antoniandre.github.io/splitpanes",
"repository": "https://github.com/antoniandre/splitpanes",
"license": "MIT",
"funding": "https://github.com/sponsors/antoniandre",
"main": "./dist/splitpanes.esm.js",
"unpkg": "dist/splitpanes.umd.js",
"jsdelivr": "dist/splitpanes.umd.js",
"module": "./dist/splitpanes.esm.js",
"types": "./src/components/splitpanes/index.d.ts",
"files": [
"dist",
"src/components/splitpanes"
],
"exports": {
".": {
"types": "./src/components/splitpanes/index.d.ts",
"import": "./dist/splitpanes.esm.js",
"require": "./dist/splitpanes.umd.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"type": "module",
"keywords": [
"splitpanes",
"split panes",
"panes resizer",
"vue",
"vue3",
"vuejs",
"ui"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build-bundle": "BUNDLE=true vite build",
"serve": "vite preview",
"release": "npm run build-bundle && git add . && git commit -m 'Release.' && git push && git push --tag"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@mdi/font": "^7.4.47",
"@vitejs/plugin-vue": "^6.0.7",
"autoprefixer": "^10.5.0",
"eslint": "^10.4.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^18.0.1",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"postcss": "^8.5.15",
"pug": "^3.0.4",
"rollup-plugin-delete": "^3.0.2",
"sass": "^1.100.0",
"simple-syntax-highlighter": "^3.2.0",
"vite": "^8.0.14",
"vue": "^3.5.34",
"vue-eslint-parser": "^10.4.0",
"vue-router": "^5.0.7",
"wave-ui": "^4.2.0"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"packageManager": "pnpm@10.0.0"
}