-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "@jswork/data-pagination",
"version": "1.0.3",
"description": "Raw data(items) pagination.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"postbuild": "rollup -c rollup.config.mjs",
"test": "bun test",
"release": "release-it"
},
"license": "MIT",
"devDependencies": {
"@jswork/next": "^1.2.2",
"@jswork/rollup-banner": "^1.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/core": "^1.3.101",
"@types/jest": "^29.5.12",
"@types/node": "^18.15.5",
"rollup": "^4.9.6",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {},
"keywords": [
"next",
"data",
"page",
"pagination",
"previous",
"total"
]
}