-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 830 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 830 Bytes
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
{
"name": "@thewebchimp/datable",
"version": "0.0.13",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/TheWebChimp/datable"
},
"files": [
"dist"
],
"main": "./dist/datable.umd.cjs",
"module": "./dist/datable.js",
"exports": {
".": {
"import": "./dist/datable.js",
"require": "./dist/datable.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"private": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"types": "vue-tsc ",
"preview": "vite preview"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.2",
"vue": "^3.3.11",
"vue-awesome-paginate": "^1.1.46",
"vue3-loading-overlay": "^0.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.2",
"sass": "^1.69.7",
"vite": "^5.0.8"
}
}