-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.85 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@bhplugin/vue3-datatable",
"version": "3.0.0",
"description": "Vue3 Datatable - fully customizable & easy to use datatable library",
"private": false,
"type": "module",
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"main": "./dist/vue3-datatable.umd.cjs",
"module": "./dist/vue3-datatable.js",
"types": "./dist/components/index.d.ts",
"exports": {
".": {
"types": "./dist/components/index.d.ts",
"import": "./dist/vue3-datatable.js",
"require": "./dist/vue3-datatable.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"author": {
"name": "Bhavesh Patel",
"email": "bhavesh.patel200@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhaveshpatel200/vue3-datatable.git"
},
"bugs": {
"url": "https://github.com/bhaveshpatel200/vue3-datatable/issues"
},
"homepage": "https://github.com/bhaveshpatel200/vue3-datatable#readme",
"funding": "https://github.com/sponsors/bhaveshpatel200",
"keywords": [
"vue3",
"vue",
"vuejs",
"component",
"datatable",
"vue3 datatable",
"vue datatable",
"vue3-datatable",
"vue grid",
"vue3 grid",
"vue table",
"vue3 table",
"datagrid",
"data-grid",
"data-table",
"table",
"grid",
"filter",
"sorting",
"pagination"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly && npm run tailwind:build",
"preview": "vite preview",
"tailwind": "tailwindcss -i ./src/assets/css/tailwind.css -o ./dist/style.css --watch",
"tailwind:build": "tailwindcss -i ./src/assets/css/tailwind.css -o ./dist/style.css --minify",
"prettier": "prettier --write \"src/**/*.{vue,ts,js,css}\"",
"lint": "eslint \"src/**/*.{vue,ts,js}\" --fix",
"cb": "npm run prettier && npm run lint && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.5.2",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/typescript-plugin": "^3.2.6",
"autoprefixer": "^10.4.8",
"eslint": "^9.39.4",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"vue": "^3.5.32",
"vue-tsc": "^3.2.6"
},
"peerDependencies": {
"vue": ">=3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}