-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.26 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
61
{
"name": "@harv46/vue-table",
"private": false,
"version": "0.1.2",
"type": "module",
"main": "./dist/umd.js",
"module": "./dist/es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/es.js",
"require": "./dist/umd.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"watch": "cd demo && npm run dev"
},
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.26",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.3",
"vite": "^4.4.0",
"vue-tsc": "^1.8.3"
},
"files": [
"package.json",
"package-lock.json",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Sreesanth46/vue-table.git"
},
"keywords": [
"vue-component",
"table",
"vue-table",
"paginate",
"paginator",
"pagination"
],
"description": "A vue table component with pagination component included.",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}