-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.22 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
{
"name": "react-loader-studio",
"private": false,
"version": "1.0.3",
"type": "module",
"description": "A lightweight React loader library featuring animated SVG loaders and spinners with customizable size, color, speed, and TypeScript support.",
"keywords": [
"react",
"react-loader",
"react-loaders",
"react-spinner",
"react-spinners",
"loading",
"loading-animation",
"loading-spinner",
"svg-loader",
"svg-spinner",
"svg-animation",
"react-component",
"react-component-library",
"typescript",
"tailwindcss"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ryavee/react-loader-studio.git"
},
"homepage": "https://react-loader-studio.vercel.app/",
"bugs": {
"url": "https://github.com/ryavee/react-loader-studio/issues"
},
"sideEffects": [
"./dist/style.css"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/library.d.ts",
"exports": {
".": {
"types": "./dist/types/library.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "npm run build:site && npm run build:library",
"build:site": "vite build",
"build:library": "vite build --mode library && tsc -p tsconfig.lib.json",
"preview": "vite preview",
"clean": "node --input-type=module -e \"import { rm } from 'node:fs/promises'; await Promise.all(['dist', 'site-dist'].map((path) => rm(path, { recursive: true, force: true })));\"",
"lint": "tsc --noEmit",
"prepack": "npm run clean && npm run build",
"pack:check": "npm pack --dry-run"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.14",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"esbuild": "^0.25.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.4.3"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"lucide-react": "0.546.0"
}
}