-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1020 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1020 Bytes
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
{
"name": "react-loadify",
"version": "1.0.4",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run format && rm -rf dist/ && tsc && npm run build:scss",
"build:scss": "sass src/styles/main.scss dist/react-loadify.min.css --style=compressed --no-source-map",
"dev": "tsc --watch",
"format": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "Datisekai",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.7",
"typescript": "^5.3.3"
},
"dependencies": {
"prettier": "^3.1.1"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 kB"
}
],
"repository": {
"type": "git",
"url": "https://github.com/datisekai/react-loadify"
},
"keywords": [
"loading",
"react-loading",
"loading-spinner",
"spinner"
]
}