-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.06 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.06 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
{
"name": "@vuelib/grid",
"version": "0.3.0",
"description": "Simple zero-dependency grid for Vue 3",
"type": "module",
"files": [
"dist"
],
"keywords": [
"vue",
"vuejs",
"grid",
"flex",
"column",
"layout"
],
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc"
},
"main": "./dist/grid.umd.js",
"module": "./dist/grid.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/grid.js",
"require": "./dist/grid.umd.js",
"types": "./dist/types/index.d.ts"
}
},
"license": "MIT",
"repository": {
"url": "git@github.com:callisto1337/grid.git",
"type": "git"
},
"author": "Mikhail Lamotkin",
"homepage": "https://github.com/callisto1337/grid#readme",
"peerDependencies": {
"vue": ">=3.0"
},
"devDependencies": {
"@types/node": "^20.8.8",
"@vitejs/plugin-vue": "^4.4.0",
"prettier": "^3.0.3",
"typescript": "5.0.4",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3",
"vue": "^3.3.7",
"vue-tsc": "^1.8.22"
}
}