-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.29 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@stainless-code/react-paginate",
"version": "1.0.0",
"description": "Elegantly use custom events in React",
"keywords": [
"paginate",
"pagination",
"react-paginate",
"react",
"typesafe",
"use-paginate"
],
"homepage": "https://github.com/stainless-code/react-paginate#readme",
"bugs": "https://github.com/stainless-code/react-paginate/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/stainless-code/react-paginate.git"
},
"license": "MIT",
"author": {
"name": "Sutu Sebastian",
"email": "[email protected]",
"url": "https://github.com/SutuSebastian"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist node_modules",
"dev": "tsup --watch",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "clean-package",
"prepublishOnly": "bun run build",
"release": "changeset publish",
"test": "vitest run",
"typecheck": "tsc",
"version": "changeset version"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@testing-library/react": "16.0.1",
"@types/bun": "1.1.13",
"@types/react": "18.3.12",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"clean-package": "2.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"jsdom": "25.0.1",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.5",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"typescript": "5.6.3",
"vitest": "2.1.5"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"clean-package": {
"remove": [
"devDependencies",
"clean-package"
],
"replace": {
"scripts": {
"postpublish": "clean-package restore"
}
}
}
}