forked from NO-CHATBOT-REVOLUTION/full-self-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 700 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "full-self-coding",
"version": "1.0.1",
"description": "Monorepo for automated code analysis and task execution",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "cd packages/cli && bun run dev",
"start": "cd packages/cli && bun run start",
"test": "cd packages/core && bun run test",
"clean": "rm -rf node_modules && rm -rf packages/*/node_modules",
"legacy:build": "bun build ./src/main.ts --target bun --outdir dist --sourcemap",
"legacy:start": "bun src/main.ts"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/node": "^20.19.35",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}