-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "fetch-loading",
"version": "0.0.8",
"description": "Loading animation with three dots which can be displayed while data is being fetched from an API.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"rollup": "rollup -c --bundleConfigAsCjs"
},
"files": [
"dist/*"
],
"keywords": [
"loading",
"animation",
"fetch",
"api",
"spinner",
"react",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/StackOverflowIsBetterThanAnyAI/fetch-loading.git"
},
"author": "Michael Münzenhofer",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/react": "^19.2.6",
"prettier-es5": "^0.0.4",
"react": "^19.2.0",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"prettier": "prettier-es5",
"peerDependencies": {
"react": ">=18 <20",
"react-dom": ">=18 <20"
}
}