forked from lrembacz/vue-responsive-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.11 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
55
56
57
58
59
60
{
"name": "@sabasayer/vue-dynamic-grids",
"version": "1.0.1",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-modern": "vue-cli-service build --modern",
"build-modern-lib": "vue-cli-service build --modern --target lib --name vue-dynamic-grids ./src/components/index.ts",
"build-modern-wc": "vue-cli-service build --modern --target wc --name vue-dynamic-grids ./src/components/*.vue",
"build-modern-wc-async": "vue-cli-service build --modern --target wc-async --name vue-dynamic-grids ./src/components/*.vue",
"build-lib": "vue-cli-service build --target lib --name vue-dynamic-grids ./src/components/index.ts",
"build-wc": "vue-cli-service build --target wc --name vue-dynamic-grids ./src/components/*.vue",
"build-wc-async": "vue-cli-service build --target wc-async --name vue-dynamic-grids ./src/components/*.vue",
"lint": "vue-cli-service lint"
},
"dependencies": {
"vue": "^2.6.7",
"vue-class-component": "^6.2.0",
"vue-property-decorator": "^7.3.0"
},
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js",
"types/*"
],
"main": "./dist/vue-dynamic-grids.common.js",
"unpkg": "./dist/vue-dynamic-grids.umd.min.js",
"devDependencies": {
"@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-typescript": "^3.4.1",
"@vue/cli-service": "^3.4.1",
"lodash": "^4.17.11",
"typescript": "^3.3.3333",
"vue-draggable-core": "^1.0.5",
"vue-resizable-core": "^1.0.3",
"vue-template-compiler": "^2.6.7",
"vuex": "^3.1.0",
"vuex-class": "^0.3.1"
},
"description": "## How to use: 1. Just use `npm install --save vue-dynamic-grids` 2. Use the components in your file directly.",
"author": "Salih Baki Sayer",
"repository": {
"type": "git",
"url": "https://github.com/sabasayer/vue-dynamic-grids.git"
},
"types": "types/components/index.d.ts",
"homepage": "https://github.com/sabasayer/vue-dynamic-grids#readme",
"license": "MIT",
"keywords": [
"vue",
"grid-layout",
"responsive",
"vue-responsive-grid-layout",
"dynamic-grids",
"grid"
]
}