-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.3 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.3 KB
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
{
"name": "meowkit",
"private": false,
"version": "1.0.0",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Treposting/meowkit",
"license": "MIT",
"description": "",
"homepage": "https://github.com/Treposting/meowkit",
"author": "0nahid",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepare": "npm run build",
"preview": "vite preview",
"json-server": "json-server --watch test/api.json"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"json-server": "^0.17.4"
},
"keywords": [
"pagination",
"react-pagination",
"pagination-component",
"react",
"paging",
"page-navigation",
"pagination-control",
"react-component",
"frontend",
"ui",
"user-interface"
]
}