-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2 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": "vue-gridstack",
"version": "1.0.1",
"description": "A Vue 3 draggable responsive grid layout component built on Gridstack.js, designed for quickly creating draggable, resizable, and configurable dashboard/workbench interfaces.",
"type": "module",
"main": "./dist/vue-gridstack.cjs",
"module": "./dist/vue-gridstack.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-gridstack.js",
"require": "./dist/vue-gridstack.cjs"
},
"./style.css": "./dist/index.css"
},
"files": [
"dist",
"src",
"assets",
"env.d.ts",
"tsconfig.json",
"vite.config.ts"
],
"sideEffects": [
"**/*.css",
"*.css"
],
"scripts": {
"dev": "vite --config vite.demo.config.ts",
"typecheck": "vue-tsc --noEmit",
"build": "vite build",
"build:demo": "vite build --config vite.demo.config.ts",
"build:all": "npm run build && npm run build:demo",
"pack:check": "npm pack --dry-run --cache .npm-cache",
"pack:dry-run": "npm pack --dry-run --cache .npm-cache"
},
"keywords": [
"vue",
"vue3",
"gridstack",
"dashboard",
"component-library"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/illm4tic/vue-gridstack.git"
},
"bugs": {
"url": "https://github.com/illm4tic/vue-gridstack/issues"
},
"homepage": "https://github.com/illm4tic/vue-gridstack#readme",
"peerDependencies": {
"vue": "^3.5.0"
},
"dependencies": {
"gridstack": "^12.3.3"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@vitejs/plugin-vue": "^6.0.1",
"sass": "^1.83.0",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2",
"vue": "^3.5.0",
"vue-tsc": "^3.0.7"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}