-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.67 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.67 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
{
"name": "@mdigital/utils",
"version": "1.0.3",
"type": "module",
"description": "Functional programming utilities and React hooks for modern web development",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
},
"./array": {
"types": "./dist/types/array/index.d.ts",
"import": "./dist/esm/array/index.js"
},
"./object": {
"types": "./dist/types/object/index.d.ts",
"import": "./dist/esm/object/index.js"
},
"./function": {
"types": "./dist/types/function/index.d.ts",
"import": "./dist/esm/function/index.js"
},
"./predicate": {
"types": "./dist/types/predicate/index.d.ts",
"import": "./dist/esm/predicate/index.js"
},
"./promise": {
"types": "./dist/types/promise/index.d.ts",
"import": "./dist/esm/promise/index.js"
},
"./math": {
"types": "./dist/types/math/index.d.ts",
"import": "./dist/esm/math/index.js"
},
"./string": {
"types": "./dist/types/string/index.d.ts",
"import": "./dist/esm/string/index.js"
},
"./react": {
"types": "./dist/types/react/index.d.ts",
"import": "./dist/esm/react/index.js"
},
"./file": {
"types": "./dist/types/file/index.d.ts",
"import": "./dist/esm/file/index.js"
},
"./validation": {
"types": "./dist/types/validation/index.d.ts",
"import": "./dist/esm/validation/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"react",
"hooks",
"typescript",
"functional-programming",
"utilities",
"ramda",
"fp",
"composition",
"curry",
"immutable"
],
"author": "Mr.Luke <dzhunusov.ulukbek@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": ">=19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.0.6",
"jsdom": "^28.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup": "^4.31.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"packageManager": "pnpm@10.18.2",
"publishConfig": {
"access": "public"
}
}