Skip to content

Commit 3963544

Browse files
willwashburnclaude
andcommitted
chore: extract to standalone repo
- Expand tsconfig.json from monorepo extends to self-contained compiler options - Update package.json repository URL to standalone repo - Add typescript to devDependencies - Add .gitignore Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent bd24446 commit 3963544

3 files changed

Lines changed: 19 additions & 4 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
dist/
3+
*.tsbuildinfo
4+
.env
5+
.env.*

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@
3939
"license": "Apache-2.0",
4040
"repository": {
4141
"type": "git",
42-
"url": "git+https://github.com/AgentWorkforce/relay.git",
43-
"directory": "packages/acp-bridge"
42+
"url": "git+https://github.com/AgentWorkforce/agent-relay-acp-bridge.git"
4443
},
4544
"publishConfig": {
4645
"access": "public"
@@ -51,6 +50,7 @@
5150
},
5251
"devDependencies": {
5352
"@types/node": "^22.19.3",
53+
"typescript": "^5.8.0",
5454
"vitest": "^3.2.4"
5555
},
5656
"engines": {

tsconfig.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
{
2-
"extends": "../../tsconfig.json",
32
"compilerOptions": {
3+
"target": "ES2022",
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
6+
"lib": ["ES2022"],
7+
"types": ["node"],
8+
"strict": true,
9+
"esModuleInterop": true,
10+
"skipLibCheck": true,
11+
"forceConsistentCasingInFileNames": true,
12+
"resolveJsonModule": true,
413
"outDir": "./dist",
514
"rootDir": "./src",
615
"declaration": true,
7-
"declarationMap": true
16+
"declarationMap": true,
17+
"sourceMap": true
818
},
919
"include": ["src/**/*"],
1020
"exclude": ["node_modules", "dist", "**/*.test.ts"]

0 commit comments

Comments
 (0)