# tools/core/constants/dependency.constants.ts

> 7 lines of code and 7 definitions.

Tree: Coordination tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/coordination#file-coordination-tools-core-constants-dependency-constants-ts
Source text: https://banes-lab.com/assets/sources/source.42321370a70c479f2d08b96c511727e3296d677bbcb1a9f0bbbaf7d2d6458dd5.generated.txt

## Definitions

- `REACH_EXTENSIONS` (lexical_declaration, line 1, exported)
- `TYPE_PACKAGE_PREFIX` (lexical_declaration, line 3, exported)
- `SPECIFIER_SEPARATOR` (lexical_declaration, line 5, exported)
- `DEPENDENCY_FIELDS` (lexical_declaration, line 7, exported)
- `BIN_FIELD` (lexical_declaration, line 9, exported)
- `SCRIPTS_FIELD` (lexical_declaration, line 11, exported)
- `INSTALL_ROOT` (lexical_declaration, line 13, exported)

## Source

```typescript
export const REACH_EXTENSIONS = [".ts", ".mts", ".cts", ".js", ".mjs", ".cjs", ".json"];

export const TYPE_PACKAGE_PREFIX = "@types/";

export const SPECIFIER_SEPARATOR = "/";

export const DEPENDENCY_FIELDS = ["dependencies", "devDependencies"];

export const BIN_FIELD = "bin";

export const SCRIPTS_FIELD = "scripts";

export const INSTALL_ROOT = "node_modules";
```
