-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.36 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
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
{
"name": "@tvaliasek/vue-datatable",
"version": "2.3.2",
"private": false,
"files": [
"src",
"dist",
"!src/components/__tests__",
"!src/main.ts",
"!src/App.vue",
"!src/CustomCell.vue",
"!src/CustomButton.vue",
"!dist/index.html",
"!dist/favicon.ico"
],
"types": "./dist/index.d.ts",
"main": "dist/data-table.umd.js",
"module": "dist/data-table.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/data-table.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/data-table.umd.js"
}
},
"./dist/data-table.css": {
"import": "./dist/data-table.css",
"require": "./dist/data-table.css"
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/tvaliasek/vue-datatable#readme",
"bugs": {
"url": "https://github.com/tvaliasek/vue-datatable/issues"
},
"keywords": [
"datatable",
"bootstrap",
"vue"
],
"license": "MIT",
"author": {
"name": "Tomáš Valiašek",
"url": "https://github.com/tvaliasek"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"flat": "^6.0.1",
"@vueuse/core": "^10.11.0",
"vue": "^3.4.35"
},
"peerDependencies": {
"bootstrap": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@rushstack/eslint-patch": "^1.6.0",
"@types/flat": "^5.0.5",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.3",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/compiler-sfc": "^3.4.6",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-standard-with-typescript": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"axios": "^1.6.2",
"eslint": "^8.55.0",
"eslint-plugin-vue": "^9.19.2",
"jsdom": "^23.0.1",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.69.5",
"typescript": "^5.3.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.0.1",
"vue-tsc": "^1.8.27"
}
}