-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@stackline/react-loading",
"version": "19.0.1",
"description": "Versioned React wrapper components, overlay helpers, and imperative hooks for @stackline/loading-core.",
"keywords": [
"react",
"react 17",
"react 18",
"react 19",
"react loading",
"react loading state",
"react loading spinner",
"react loader",
"react loading overlay",
"react fullscreen loader",
"react button loader",
"react inline loader",
"react suspense alternative",
"react dashboard loading",
"react table loading",
"react modal loading",
"react upload loading",
"react accessibility",
"react aria-live",
"react component",
"react hook",
"react ui library",
"loading",
"loader",
"loading-state",
"loading-indicator",
"spinner",
"overlay",
"fullscreen-loader",
"button-loader",
"inline-loader",
"progress-ui",
"tree-shakeable",
"typescript"
],
"homepage": "https://alexandro.net/docs/react/react-loading/",
"bugs": {
"url": "https://github.com/alexandroit/react-loading/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexandroit/react-loading.git"
},
"license": "MIT",
"type": "module",
"files": [
"dist",
"CHANGELOG.md",
"SECURITY.md",
"README.md",
"LICENSE"
],
"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"
}
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"clean": "rm -rf dist docs/react-17 docs/react-18 docs/react-19",
"docs:install:react-17": "cd docs-src/react-17 && npm install",
"docs:install:react-18": "cd docs-src/react-18 && npm install",
"docs:install:react-19": "cd docs-src/react-19 && npm install",
"build:docs:react-17": "cd docs-src/react-17 && npm run build",
"build:docs:react-18": "cd docs-src/react-18 && npm run build",
"build:docs:react-19": "cd docs-src/react-19 && npm run build",
"docs:root": "node scripts/write-docs-root.js",
"build:docs": "npm run build:docs:react-17 && npm run build:docs:react-18 && npm run build:docs:react-19 && npm run docs:root",
"release:line": "node scripts/release-react-line.js",
"release:sequence": "node scripts/release-react-sequence.js",
"typecheck": "tsc --noEmit",
"test": "node --test tests/*.test.cjs"
},
"peerDependencies": {
"react": ">=19.0.0 <20.0.0",
"react-dom": ">=19.0.0 <20.0.0"
},
"dependencies": {
"@stackline/loading-core": "^1.0.1"
},
"devDependencies": {
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"react": "19.2.8",
"react-dom": "19.2.8",
"tsup": "8.5.1",
"typescript": "5.9.3"
},
"overrides": {
"tsup": {
"esbuild": "^0.28.2"
}
}
}