feat: initial commit - Phase 1 & 2 core features

This commit is contained in:
hiderfong
2026-04-22 17:07:33 +08:00
commit 1773bda06b
25005 changed files with 6252106 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export * from 'lodash-es'
+30
View File
@@ -0,0 +1,30 @@
{
"name": "lodash-unified",
"version": "1.0.3",
"description": "A union entrypoint of lodash for both ESModule and Commonjs.",
"main": "./require.cjs",
"types": "./type.d.ts",
"exports": {
"import": {
"types": "./type.d.ts",
"default": "./import.js"
},
"require": {
"types": "./type.d.ts",
"default": "./require.cjs"
}
},
"type": "module",
"author": "Jack Works",
"license": "MIT",
"devDependencies": {
"lodash": "*",
"lodash-es": "*",
"@types/lodash-es": "*"
},
"peerDependencies": {
"lodash": "*",
"lodash-es": "*",
"@types/lodash-es": "*"
}
}
+1
View File
@@ -0,0 +1 @@
module.exports = require('lodash')
+1
View File
@@ -0,0 +1 @@
export * from 'lodash-es'