-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.56 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
62
63
{
"name": "vue3-table-lite",
"version": "1.4.2",
"description": "A simple and lightweight data table component for Vue.js 3. Features sorting, paging, row check, dynamic data rendering, supported TypeScript, and more.",
"repository": {
"type": "git",
"url": "https://github.com/linmasahiro/vue3-table-lite"
},
"keywords": [
"vue",
"vue3",
"table"
],
"author": "Lin Masahiro([email protected])",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/linmasahiro/vue3-table-lite/issues"
},
"homepage": "https://github.com/linmasahiro/vue3-table-lite",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview"
},
"dependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"@types/node": "^22.8.4",
"@types/vue": "^2.0.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.12",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/runtime-core": "^3.5.12",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.30.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vue-tsc": "^2.1.8"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"main": "./index.js",
"types": "./ts.d.ts"
}