-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "datatables.net-vue3",
"version": "3.0.2",
"description": "Vue3 component for DataTables",
"main": "dist/datatables.net-vue3.umd.js",
"module": "dist/datatables.net-vue3.mjs",
"require": "dist/datatables.net-vue3.js",
"unpkg": "dist/datatables.net-vue3.umd.js",
"types": "dist/datatables.net-vue3.d.ts",
"files": [
"dist/*",
"src/**/*"
],
"sideEffects": false,
"scripts": {
"dev": "vite --host",
"build": "cross-env NODE_ENV=production vite build && npm run build-types",
"build-types": "vue-tsc --emitDeclarationOnly -p ./tsconfig.types.json && api-extractor run && rimraf ./temp"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.33.7",
"@types/jquery": "^3.5.14",
"@vitejs/plugin-vue": "^4.0.0",
"cross-env": "^7.0.3",
"datatables.net-select-dt": "^1.5.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4",
"vue": "^3.2.45",
"vue-tsc": "^1.0.16"
},
"peerDependencies": {
"datatables.net": "^2",
"vue": "^3.0.5"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataTables/Vue.git"
},
"author": {
"name": "SpryMedia Ltd",
"url": "http://datatables.net"
}
}