diff --git a/API.md b/API.md
index e4c817d..f140cdf 100644
--- a/API.md
+++ b/API.md
@@ -218,7 +218,6 @@ public readonly tsProject: TypeScriptProject;
| **Name** | **Type** | **Description** |
| --- | --- | --- |
-| astReflectionDependency | string | *No description.* |
| coreDependency | string | *No description.* |
| dependencies | string[] | *No description.* |
| devDependencies | string[] | *No description.* |
@@ -226,16 +225,6 @@ public readonly tsProject: TypeScriptProject;
---
-##### `astReflectionDependency`Required
-
-```typescript
-public readonly astReflectionDependency: string;
-```
-
-- *Type:* string
-
----
-
##### `coreDependency`Required
```typescript
diff --git a/src/component.ts b/src/component.ts
index c6b002c..17ad595 100644
--- a/src/component.ts
+++ b/src/component.ts
@@ -81,7 +81,6 @@ export interface TypeScriptPlugin {
*/
export class Functionless extends Component {
static readonly coreDependency = "functionless";
- static readonly astReflectionDependency = "@functionless/ast-reflection";
static readonly languageServiceDependency = "@functionless/language-service";
static readonly dependencies = [
Functionless.coreDependency,
@@ -89,11 +88,7 @@ export class Functionless extends Component {
"typesafe-dynamodb",
];
static readonly devDependencies = [
- "@swc/cli",
- "@swc/core@1.2.218",
- "@swc/register",
"@swc/jest",
- Functionless.astReflectionDependency,
Functionless.languageServiceDependency,
];