-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 1.71 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
{
"name": "holy-loader",
"version": "2.3.11",
"description": "Holy Loader is a lightweight, customizable top-loading progress bar component for React applications.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"keywords": [
"react",
"react-loader",
"progress-bar",
"loading-indicator",
"nprogress",
"react-progress-bar",
"web-performance",
"user-interface",
"top-loader",
"loading-bar",
"ui-components",
"react-ui",
"react-component",
"front-end",
"website-interactivity",
"asynchronous-loading",
"page-load",
"nextjs",
"single-page-application"
],
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"lint": "biome check --write",
"test": "vitest -c ./vitest.config.ts"
},
"files": [
"dist/**/*.js*",
"dist/**/*.cjs*",
"dist/**/*.mjs*",
"dist/**/*.d*"
],
"bugs": {
"url": "https://github.com/tomcru/holy-loader/issues"
},
"homepage": "https://github.com/tomcru/holy-loader#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tomcru/holy-loader.git"
},
"author": {
"name": "Tom Rumpf",
"email": "[email protected]",
"url": "https://github.com/tomcru"
},
"peerDependencies": {
"react": ">= 16.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/react": "^18.2.43",
"react": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}