-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 836 Bytes
/
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
{
"name": "pagination-schema",
"version": "1.0.0",
"description": "Useful and easy helper to create pagination components out of the box.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Angel-Ponce/pagination-schema.git"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"pagination",
"typescript",
"helper",
"pages",
"component"
],
"author": "Angel Ponce",
"license": "ISC",
"bugs": {
"url": "https://github.com/Angel-Ponce/pagination-schema/issues"
},
"homepage": "https://github.com/Angel-Ponce/pagination-schema#readme",
"devDependencies": {
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public"
}
}