diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/README.md b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/README.md
new file mode 100644
index 000000000000..75fd05b989b4
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/README.md
@@ -0,0 +1,117 @@
+
+
+# symbolMarkShapes
+
+> List of supported Vega symbol mark shapes.
+
+
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var symbolMarkShapes = require( '@stdlib/plot/vega/mark/symbol/shapes' );
+```
+
+#### symbolMarkShapes()
+
+Returns a list of symbol mark shapes.
+
+```javascript
+var out = symbolMarkShapes();
+// returns [ 'arrow', 'circle', 'cross', 'diamond', 'square', 'stroke', 'triangle', 'triangle-down', 'triangle-left', 'triangle-right', 'triangle-up', 'wedge' ]
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var contains = require( '@stdlib/array/base/assert/contains' ).factory;
+var symbolMarkShapes = require( '@stdlib/plot/vega/mark/symbol/shapes' );
+
+var isSymbolMarkShape = contains( symbolMarkShapes() );
+
+var bool = isSymbolMarkShape( 'circle' );
+// returns true
+
+bool = isSymbolMarkShape( 'diamond' );
+// returns true
+
+bool = isSymbolMarkShape( 'beep' );
+// returns false
+
+bool = isSymbolMarkShape( 'boop' );
+// returns false
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/benchmark/benchmark.js b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/benchmark/benchmark.js
new file mode 100644
index 000000000000..9b8b8cfe983c
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/benchmark/benchmark.js
@@ -0,0 +1,48 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 bench = require( '@stdlib/bench' );
+var isStringArray = require( '@stdlib/assert/is-string-array' ).primitives;
+var pkg = require( './../package.json' ).name;
+var symbolMarkShapes = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var out;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ out = symbolMarkShapes();
+ if ( out.length < 2 ) {
+ b.fail( 'should return an array' );
+ }
+ }
+ b.toc();
+ if ( !isStringArray( out ) ) {
+ b.fail( 'should return an array of strings' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/repl.txt b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/repl.txt
new file mode 100644
index 000000000000..8c5c84b97b11
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/repl.txt
@@ -0,0 +1,17 @@
+
+{{alias}}()
+ Returns a list of symbol mark shapes.
+
+ Returns
+ -------
+ out: Array
+ List of symbol mark shapes.
+
+ Examples
+ --------
+ > var out = {{alias}}()
+ [ 'arrow', 'circle', 'cross', ... ]
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/types/index.d.ts b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/types/index.d.ts
new file mode 100644
index 000000000000..c8c7b9ea7dfe
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/types/index.d.ts
@@ -0,0 +1,35 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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
+
+/**
+* Returns a list of symbol mark shapes.
+*
+* @returns list of symbol mark shapes
+*
+* @example
+* var list = symbolMarkShapes();
+* // returns [ 'arrow', 'circle', 'cross', 'diamond', 'square', 'stroke', 'triangle', 'triangle-down', 'triangle-left', 'triangle-right', 'triangle-up', 'wedge' ]
+*/
+declare function symbolMarkShapes(): Array;
+
+
+// EXPORTS //
+
+export = symbolMarkShapes;
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/types/test.ts b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/types/test.ts
new file mode 100644
index 000000000000..8761c7ffd499
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/docs/types/test.ts
@@ -0,0 +1,32 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 symbolMarkShapes = require( './index' );
+
+
+// TESTS //
+
+// The function returns an array of strings...
+{
+ symbolMarkShapes(); // $ExpectType string[]
+}
+
+// The compiler throws an error if the function is provided any arguments...
+{
+ symbolMarkShapes( 9 ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/examples/index.js b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/examples/index.js
new file mode 100644
index 000000000000..9ddacc3d148b
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/examples/index.js
@@ -0,0 +1,40 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 contains = require( '@stdlib/array/base/assert/contains' ).factory;
+var symbolMarkShapes = require( './../lib' );
+
+var isSymbolMarkShape = contains( symbolMarkShapes() );
+
+var bool = isSymbolMarkShape( 'circle' );
+console.log( bool );
+// => true
+
+bool = isSymbolMarkShape( 'diamond' );
+console.log( bool );
+// => true
+
+bool = isSymbolMarkShape( 'beep' );
+console.log( bool );
+// => false
+
+bool = isSymbolMarkShape( 'boop' );
+console.log( bool );
+// => false
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/data.json b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/data.json
new file mode 100644
index 000000000000..74023d325f40
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/data.json
@@ -0,0 +1,14 @@
+[
+ "arrow",
+ "circle",
+ "cross",
+ "diamond",
+ "square",
+ "stroke",
+ "triangle",
+ "triangle-down",
+ "triangle-left",
+ "triangle-right",
+ "triangle-up",
+ "wedge"
+]
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/index.js b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/index.js
new file mode 100644
index 000000000000..28ff260476ff
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/index.js
@@ -0,0 +1,40 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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';
+
+/**
+* Return a list of symbol mark shapes.
+*
+* @module @stdlib/plot/vega/mark/symbol/shapes
+*
+* @example
+* var symbolMarkShapes = require( '@stdlib/plot/vega/mark/symbol/shapes' );
+*
+* var out = symbolMarkShapes();
+* // returns [ 'arrow', 'circle', 'cross', 'diamond', 'square', 'stroke', 'triangle', 'triangle-down', 'triangle-left', 'triangle-right', 'triangle-up', 'wedge' ]
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/main.js b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/main.js
new file mode 100644
index 000000000000..8f7039821f82
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/lib/main.js
@@ -0,0 +1,44 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 DATA = require( './data.json' );
+
+
+// MAIN //
+
+/**
+* Returns a list of symbol mark shapes.
+*
+* @returns {StringArray} list of symbol mark shapes
+*
+* @example
+* var out = shapes();
+* // returns [ 'arrow', 'circle', 'cross', 'diamond', 'square', 'stroke', 'triangle', 'triangle-down', 'triangle-left', 'triangle-right', 'triangle-up', 'wedge' ]
+*/
+function shapes() {
+ return DATA.slice();
+}
+
+
+// EXPORTS //
+
+module.exports = shapes;
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/package.json b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/package.json
new file mode 100644
index 000000000000..b6801141e39b
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/package.json
@@ -0,0 +1,65 @@
+{
+ "name": "@stdlib/plot/vega/mark/symbol/shapes",
+ "version": "0.0.0",
+ "description": "List of supported Vega symbol mark shapes.",
+ "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": {
+ "benchmark": "./benchmark",
+ "doc": "./docs",
+ "example": "./examples",
+ "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",
+ "plot",
+ "vega",
+ "mark",
+ "symbol",
+ "shape",
+ "shapes",
+ "utilities",
+ "utility",
+ "utils",
+ "util"
+ ],
+ "__stdlib__": {}
+}
diff --git a/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/test/test.js b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/test/test.js
new file mode 100644
index 000000000000..f3f225698cd3
--- /dev/null
+++ b/lib/node_modules/@stdlib/plot/vega/mark/symbol/shapes/test/test.js
@@ -0,0 +1,57 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 symbolMarkShapes = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof symbolMarkShapes, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function returns a list of symbol mark shapes', function test( t ) {
+ var expected;
+ var actual;
+
+ expected = [
+ 'arrow',
+ 'circle',
+ 'cross',
+ 'diamond',
+ 'square',
+ 'stroke',
+ 'triangle',
+ 'triangle-down',
+ 'triangle-left',
+ 'triangle-right',
+ 'triangle-up',
+ 'wedge'
+ ];
+ actual = symbolMarkShapes();
+
+ t.deepEqual( actual, expected, 'returns expected value' );
+ t.end();
+});