diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/README.md b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/README.md
new file mode 100644
index 000000000000..5b442ac16e5d
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/README.md
@@ -0,0 +1,168 @@
+
+
+# FLOAT32_MAX_SAFE_LUCAS
+
+> Maximum safe [Lucas number][lucas-number] when stored in [single-precision floating-point][ieee754] format.
+
+
+
+## Usage
+
+```javascript
+var FLOAT32_MAX_SAFE_LUCAS = require( '@stdlib/constants/float32/max-safe-lucas' );
+```
+
+#### FLOAT32_MAX_SAFE_LUCAS
+
+The maximum [safe][safe-integers] [Lucas number][lucas-number] when stored in [single-precision floating-point][ieee754] format.
+
+```javascript
+var bool = ( FLOAT32_MAX_SAFE_LUCAS === 12752043 );
+// returns true
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var FLOAT32_MAX_SAFE_LUCAS = require( '@stdlib/constants/float32/max-safe-lucas' );
+
+function lucas( n ) {
+ var a;
+ var b;
+ var c;
+ var i;
+
+ a = 2;
+ if ( n === 0 ) {
+ return a;
+ }
+ b = 1;
+ for ( i = 2; i <= n; i++ ) {
+ c = a + b;
+ a = b;
+ b = c;
+ }
+ return b;
+}
+
+var v;
+var i;
+for ( i = 0; i < 100; i++ ) {
+ v = lucas( i );
+ if ( v > FLOAT32_MAX_SAFE_LUCAS ) {
+ console.log( 'Unsafe: %d', v );
+ } else {
+ console.log( 'Safe: %d', v );
+ }
+}
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/constants/float32/max_safe_lucas.h"
+```
+
+#### STDLIB_CONSTANT_FLOAT32_MAX_SAFE_LUCAS
+
+Macro for the maximum [safe][safe-integers] [Lucas number][lucas-number] when stored in [single-precision floating-point][ieee754] format.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[safe-integers]: http://www.2ality.com/2013/10/safe-integers.html
+
+[lucas-number]: https://en.wikipedia.org/wiki/Lucas_number
+
+[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/repl.txt b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/repl.txt
new file mode 100644
index 000000000000..a2f8bae144c8
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/repl.txt
@@ -0,0 +1,12 @@
+
+{{alias}}
+ Maximum safe Lucas number when stored in single-precision floating-point
+ format.
+
+ Examples
+ --------
+ > {{alias}}
+ 12752043
+
+ See Also
+ --------
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/types/index.d.ts
new file mode 100644
index 000000000000..b60246e7e198
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/types/index.d.ts
@@ -0,0 +1,33 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+/**
+* Maximum safe Lucas number when stored in single-precision floating-point format.
+*
+* @example
+* var max = FLOAT32_MAX_SAFE_LUCAS;
+* // returns 12752043
+*/
+declare const FLOAT32_MAX_SAFE_LUCAS: number;
+
+
+// EXPORTS //
+
+export = FLOAT32_MAX_SAFE_LUCAS;
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/types/test.ts
new file mode 100644
index 000000000000..3148bc667d37
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/types/test.ts
@@ -0,0 +1,28 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+import FLOAT32_MAX_SAFE_LUCAS = require( './index' );
+
+
+// TESTS //
+
+// The export is a number...
+{
+ // eslint-disable-next-line @typescript-eslint/no-unused-expressions
+ FLOAT32_MAX_SAFE_LUCAS; // $ExpectType number
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/examples/index.js b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/examples/index.js
new file mode 100644
index 000000000000..8baa8f257be0
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/examples/index.js
@@ -0,0 +1,51 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var FLOAT32_MAX_SAFE_LUCAS = require( './../lib' );
+
+function lucas( n ) {
+ var a;
+ var b;
+ var c;
+ var i;
+
+ a = 2;
+ if ( n === 0 ) {
+ return a;
+ }
+ b = 1;
+ for ( i = 2; i <= n; i++ ) {
+ c = a + b;
+ a = b;
+ b = c;
+ }
+ return b;
+}
+
+var v;
+var i;
+for ( i = 0; i < 100; i++ ) {
+ v = lucas( i );
+ if ( v > FLOAT32_MAX_SAFE_LUCAS ) {
+ console.log( 'Unsafe: %d', v );
+ } else {
+ console.log( 'Safe: %d', v );
+ }
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/include/stdlib/constants/float32/max_safe_lucas.h b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/include/stdlib/constants/float32/max_safe_lucas.h
new file mode 100644
index 000000000000..575ba5ab94bb
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/include/stdlib/constants/float32/max_safe_lucas.h
@@ -0,0 +1,27 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+#ifndef STDLIB_CONSTANTS_FLOAT32_MAX_SAFE_LUCAS_H
+#define STDLIB_CONSTANTS_FLOAT32_MAX_SAFE_LUCAS_H
+
+/**
+* Macro for the maximum safe Lucas number when stored in single-precision floating-point format.
+*/
+#define STDLIB_CONSTANT_FLOAT32_MAX_SAFE_LUCAS 12752043
+
+#endif // !STDLIB_CONSTANTS_FLOAT32_MAX_SAFE_LUCAS_H
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/lib/index.js b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/lib/index.js
new file mode 100644
index 000000000000..731d2c411232
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/lib/index.js
@@ -0,0 +1,49 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+/**
+* Maximum safe Lucas number when stored in single-precision floating-point format.
+*
+* @module @stdlib/constants/float32/max-safe-lucas
+* @type {integer}
+*
+* @example
+* var FLOAT32_MAX_SAFE_LUCAS = require( '@stdlib/constants/float32/max-safe-lucas' );
+* // returns 12752043
+*/
+
+
+// MAIN //
+
+/**
+* The maximum safe Lucas number when stored in single-precision floating-point format.
+*
+* @constant
+* @type {integer}
+* @default 12752043
+* @see [Lucas number]{@link https://en.wikipedia.org/wiki/Lucas_number}
+* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
+*/
+var FLOAT32_MAX_SAFE_LUCAS = 12752043;
+
+
+// EXPORTS //
+
+module.exports = FLOAT32_MAX_SAFE_LUCAS;
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/manifest.json b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/manifest.json
new file mode 100644
index 000000000000..844d692f6439
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/manifest.json
@@ -0,0 +1,36 @@
+{
+ "options": {},
+ "fields": [
+ {
+ "field": "src",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "include",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "libraries",
+ "resolve": false,
+ "relative": false
+ },
+ {
+ "field": "libpath",
+ "resolve": true,
+ "relative": false
+ }
+ ],
+ "confs": [
+ {
+ "src": [],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": []
+ }
+ ]
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/package.json b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/package.json
new file mode 100644
index 000000000000..0efd00ec8fe4
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/package.json
@@ -0,0 +1,71 @@
+{
+ "name": "@stdlib/constants/float32/max-safe-lucas",
+ "version": "0.0.0",
+ "description": "Maximum safe Lucas number when stored in single-precision floating-point format.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "doc": "./docs",
+ "example": "./examples",
+ "include": "./include",
+ "lib": "./lib",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdmath",
+ "constant",
+ "const",
+ "max",
+ "maximum",
+ "lucas",
+ "fibonacci",
+ "number",
+ "fib",
+ "safe",
+ "integer",
+ "floating",
+ "point",
+ "floating-point",
+ "float",
+ "float32",
+ "ieee754"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/test/test.js b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/test/test.js
new file mode 100644
index 000000000000..4dd20d9f988b
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-safe-lucas/test/test.js
@@ -0,0 +1,38 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var FLOAT32_MAX_SAFE_LUCAS = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a number', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof FLOAT32_MAX_SAFE_LUCAS, 'number', 'main export is a number' );
+ t.end();
+});
+
+tape( 'the exported value is 12752043', function test( t ) {
+ t.strictEqual( FLOAT32_MAX_SAFE_LUCAS, 12752043, 'returns expected value' );
+ t.end();
+});