@sec-fe/v-grid-layout 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +232 -0
- package/lib/index.css +1 -0
- package/lib/index.d.ts +433 -0
- package/lib/v-grid-layout.js +5240 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sec-fe/v-grid-layout",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"types": "./lib/index.d.ts",
|
|
8
|
+
"import": "./lib/v-grid-layout.js",
|
|
9
|
+
"default": "./lib/v-grid-layout.js"
|
|
10
|
+
},
|
|
11
|
+
"./index.css": "./lib/index.css"
|
|
12
|
+
},
|
|
13
|
+
"module": "./lib/v-grid-layout.js",
|
|
14
|
+
"types": "./lib/index.d.ts",
|
|
15
|
+
"files": [
|
|
16
|
+
"lib/index.css",
|
|
17
|
+
"lib/index.d.ts",
|
|
18
|
+
"lib/v-grid-layout.js"
|
|
19
|
+
],
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"vue": "> 3.4.21"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@element-plus/icons-vue": "2.3.1",
|
|
25
|
+
"@kjgl77/datav-vue3": "^1.3.3",
|
|
26
|
+
"@vueuse/core": "13.5.0",
|
|
27
|
+
"@vueuse/integrations": "13.5.0",
|
|
28
|
+
"element-plus": "2.10.4",
|
|
29
|
+
"file-saver": "^2.0.5",
|
|
30
|
+
"hotkeys-js": "^3.10.1",
|
|
31
|
+
"lodash": "^4.17.21",
|
|
32
|
+
"modern-normalize": "3.0.1",
|
|
33
|
+
"pinia": "2.3.1",
|
|
34
|
+
"screenfull": "^6.0.2",
|
|
35
|
+
"universal-cookie": "8.0.1",
|
|
36
|
+
"vue": "3.5.17"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@antfu/eslint-config": "^4.19.0",
|
|
40
|
+
"@types/file-saver": "^2.0.5",
|
|
41
|
+
"@types/lodash": "^4.17.20",
|
|
42
|
+
"@types/node": "^22.16.4",
|
|
43
|
+
"@vitejs/plugin-vue": "~5.2.4",
|
|
44
|
+
"@vue/test-utils": "^2.4.6",
|
|
45
|
+
"eslint": "^9.31.0",
|
|
46
|
+
"eslint-plugin-format": "^1.0.1",
|
|
47
|
+
"fs-extra": "^11.3.0",
|
|
48
|
+
"jsdom": "^27.2.0",
|
|
49
|
+
"rimraf": "^6.1.2",
|
|
50
|
+
"rollup-plugin-visualizer": "^5.14.0",
|
|
51
|
+
"sass": "^1.89.2",
|
|
52
|
+
"typescript": "~5.6.3",
|
|
53
|
+
"unplugin-auto-import": "^0.19.0",
|
|
54
|
+
"unplugin-vue-components": "^0.28.0",
|
|
55
|
+
"vite": "~5.4.19",
|
|
56
|
+
"vite-plugin-dts": "~4.5.4",
|
|
57
|
+
"vitest": "^4.0.12",
|
|
58
|
+
"vue-tsc": "~2.1.10"
|
|
59
|
+
},
|
|
60
|
+
"browserslist": [
|
|
61
|
+
"> 1%",
|
|
62
|
+
"Chrome >= 90",
|
|
63
|
+
"not ie <= 11",
|
|
64
|
+
"not dead"
|
|
65
|
+
],
|
|
66
|
+
"scripts": {
|
|
67
|
+
"init:config": "node ./scripts/initChartType.mjs",
|
|
68
|
+
"dev": "vite",
|
|
69
|
+
"build": "vue-tsc --noEmit && vite build",
|
|
70
|
+
"serve": "vite preview",
|
|
71
|
+
"build:nocheck": "npm run init:config && vite build",
|
|
72
|
+
"test": "vitest",
|
|
73
|
+
"lint": "eslint .",
|
|
74
|
+
"lint:fix": "eslint . --fix",
|
|
75
|
+
"clean": "rimraf lib dist node_modules/.vite"
|
|
76
|
+
}
|
|
77
|
+
}
|