Skip to content

Commit f1a27b3

Browse files
willwashburnclaude
andcommitted
chore: set up monorepo and import events, agent, memory packages
- Add root package.json with workspaces for all three packages - Add root tsconfig.json - Add .gitignore - Update repository URLs to point to this repo - Remove monorepo extends from packages/events and packages/agent tsconfigs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ad68021 commit f1a27b3

8 files changed

Lines changed: 45 additions & 5 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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "proactive",
3+
"version": "0.1.0",
4+
"private": true,
5+
"type": "module",
6+
"workspaces": [
7+
"packages/events",
8+
"packages/agent",
9+
"packages/memory"
10+
],
11+
"scripts": {
12+
"build": "npm run build --workspaces --if-present",
13+
"test": "npm run test --workspaces --if-present",
14+
"typecheck": "npm run typecheck --workspaces --if-present"
15+
},
16+
"devDependencies": {
17+
"@types/node": "^25.5.0",
18+
"typescript": "^5.7.0",
19+
"vitest": "^3.2.4"
20+
}
21+
}

packages/agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"repository": {
3131
"type": "git",
32-
"url": "git+https://github.com/AgentWorkforce/relay.git",
32+
"url": "git+https://github.com/AgentWorkforce/proactive.git",
3333
"directory": "packages/agent"
3434
},
3535
"publishConfig": {

packages/agent/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"extends": "../../tsconfig.json",
32
"compilerOptions": {
43
"target": "ES2022",
54
"module": "esnext",

packages/events/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"repository": {
4141
"type": "git",
42-
"url": "git+https://github.com/AgentWorkforce/relay.git",
42+
"url": "git+https://github.com/AgentWorkforce/proactive.git",
4343
"directory": "packages/events"
4444
},
4545
"publishConfig": {

packages/events/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"extends": "../../tsconfig.json",
32
"compilerOptions": {
43
"target": "ES2022",
54
"module": "esnext",

packages/memory/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"repository": {
3535
"type": "git",
36-
"url": "git+https://github.com/AgentWorkforce/relay.git",
36+
"url": "git+https://github.com/AgentWorkforce/proactive.git",
3737
"directory": "packages/memory"
3838
}
3939
}

tsconfig.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"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
13+
},
14+
"files": [],
15+
"include": []
16+
}

0 commit comments

Comments
 (0)