-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.61 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
61
62
63
64
65
66
{
"name": "react-page-loading",
"version": "2.0.2",
"description": "React page loading components with TypeScript and React 19 support.",
"license": "MIT",
"author": "Devzer Studio",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"lint": "eslint .",
"prepublishOnly": "npm run build"
},
"keywords": [
"react-page-loading",
"page-loading",
"spinner",
"overlay",
"loading",
"react",
"react-component"
],
"peerDependencies": {
"react": "^16.14.0 || ^17 || ^18 || ^19",
"react-dom": "^16.14.0 || ^17 || ^18 || ^19"
},
"dependencies": {},
"devDependencies": {
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"typescript": "^5.5.0",
"tsup": "^8.0.0",
"vitest": "^2.0.0",
"@testing-library/react": "^16.0.0",
"eslint": "^9",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devzerstudios/react-page-loading.git"
},
"bugs": {
"url": "https://github.com/devzerstudios/react-page-loading/issues"
},
"homepage": "https://github.com/devzerstudios/react-page-loading"
}