-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "vue-use-paginator",
"version": "0.4.1",
"description": "Vue use-hook for renderless pagination logic",
"author": "Markus Appel <[email protected]>",
"scripts": {
"dev": "vite",
"build": "npm run build:bundle && npm run build:declarations",
"build:bundle": "vite build",
"build:declarations": "vue-tsc src/usePaginator.ts --declaration --emitDeclarationOnly --outDir dist",
"publishPackage": "npm run build && npm publish"
},
"type": "module",
"main": "./dist/vue-use-paginator.umd.js",
"module": "./dist/vue-use-paginator.es.js",
"files": [
"dist"
],
"types": "dist/usePaginator.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/usePaginator.d.ts",
"default": "./dist/vue-use-paginator.es.js"
},
"require": {
"types": "./dist/usePaginator.d.ts",
"default": "./dist/vue-use-paginator.umd.js"
}
}
},
"dependencies": {
"vue": "^3.4.21"
},
"devDependencies": {
"@babel/types": "^7.24.0",
"@types/node": "^20.12.2",
"@vitejs/plugin-vue": "^5.0.4",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vue-tsc": "^2.0.7"
},
"keywords": [
"vue",
"hooks",
"use-hooks",
"vue-use",
"composition api",
"pagination",
"paginator",
"renderless"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sun0fABeach/vue-use-paginator.git"
}
}