-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (69 loc) · 1.71 KB
/
package.json
File metadata and controls
70 lines (69 loc) · 1.71 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
{
"name": "react-loop-z",
"version": "3.0.0",
"description": "React utility for loops and conditional rendering. Simple, clean, and flexible.",
"license": "MIT",
"author": "Delpi.Kye",
"type": "module",
"sideEffects": false,
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.esm.js",
"require": "./build/index.cjs.js",
"default": "./build/index.esm.js"
}
},
"files": [
"build"
],
"scripts": {
"clean": "rimraf build",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/delpikye-v/react-loop.git"
},
"homepage": "https://github.com/delpikye-v/react-loop#readme",
"bugs": {
"url": "https://github.com/delpikye-v/react-loop/issues"
},
"keywords": [
"react",
"react-loop",
"react-range",
"react-for",
"react-utils",
"loop",
"iteration",
"conditional-rendering",
"typescript",
"zero-dependency",
"tree-shakable"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2",
"typescript": "^5.4.0"
}
}