repoburg 1.0.30 → 1.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend/.env +2 -2
- package/backend/.eslintrc.js +25 -0
- package/backend/README.md +3 -0
- package/backend/dist/app.module.js +3 -0
- package/backend/dist/app.module.js.map +1 -1
- package/backend/dist/context-generation/context-generation.service.d.ts +1 -0
- package/backend/dist/context-generation/context-generation.service.js +27 -0
- package/backend/dist/context-generation/context-generation.service.js.map +1 -1
- package/backend/dist/context-snippets/context-snippets.controller.d.ts +13 -0
- package/backend/dist/context-snippets/context-snippets.controller.js +91 -0
- package/backend/dist/context-snippets/context-snippets.controller.js.map +1 -0
- package/backend/dist/context-snippets/context-snippets.module.d.ts +2 -0
- package/backend/dist/context-snippets/context-snippets.module.js +30 -0
- package/backend/dist/context-snippets/context-snippets.module.js.map +1 -0
- package/backend/dist/context-snippets/context-snippets.service.d.ts +17 -0
- package/backend/dist/context-snippets/context-snippets.service.js +93 -0
- package/backend/dist/context-snippets/context-snippets.service.js.map +1 -0
- package/backend/dist/context-snippets/dto/context-snippet.dto.d.ts +17 -0
- package/backend/dist/context-snippets/dto/context-snippet.dto.js +60 -0
- package/backend/dist/context-snippets/dto/context-snippet.dto.js.map +1 -0
- package/backend/dist/core-entities/context-snippet.entity.d.ts +6 -0
- package/backend/dist/core-entities/context-snippet.entity.js +34 -0
- package/backend/dist/core-entities/context-snippet.entity.js.map +1 -0
- package/backend/dist/core-entities/index.d.ts +1 -0
- package/backend/dist/core-entities/index.js +1 -0
- package/backend/dist/core-entities/index.js.map +1 -1
- package/backend/dist/seeding/data/context-templates/default-followup_ad-hoc-focused-context.d.ts +1 -1
- package/backend/dist/seeding/data/context-templates/default-followup_ad-hoc-focused-context.js +2 -0
- package/backend/dist/seeding/data/context-templates/default-followup_ad-hoc-focused-context.js.map +1 -1
- package/backend/dist/seeding/data/context-templates/default-initial_condensed-project-context.d.ts +1 -1
- package/backend/dist/seeding/data/context-templates/default-initial_condensed-project-context.js +2 -0
- package/backend/dist/seeding/data/context-templates/default-initial_condensed-project-context.js.map +1 -1
- package/backend/dist/seeding/data/context-templates/default-initial_full-project-context.d.ts +1 -1
- package/backend/dist/seeding/data/context-templates/default-initial_full-project-context.js +3 -1
- package/backend/dist/seeding/data/context-templates/default-initial_full-project-context.js.map +1 -1
- package/backend/dist/seeding/data/custom-snippets/run-command.d.ts +3 -0
- package/backend/dist/seeding/data/custom-snippets/run-command.js +7 -0
- package/backend/dist/seeding/data/custom-snippets/run-command.js.map +1 -0
- package/backend/dist/session-inputs/session-input-context.service.d.ts +4 -1
- package/backend/dist/session-inputs/session-input-context.service.js +35 -3
- package/backend/dist/session-inputs/session-input-context.service.js.map +1 -1
- package/backend/dist/session-inputs/session-inputs.module.js +2 -0
- package/backend/dist/session-inputs/session-inputs.module.js.map +1 -1
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/backend/nest-cli.json +12 -0
- package/backend/tsconfig.build.json +4 -0
- package/backend/tsconfig.json +21 -0
- package/daemon/tsconfig.json +14 -0
- package/package.json +5 -23
- package/backend/.webcoder/data.sqlite +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "commonjs",
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"removeComments": true,
|
|
6
|
+
"emitDecoratorMetadata": true,
|
|
7
|
+
"experimentalDecorators": true,
|
|
8
|
+
"allowSyntheticDefaultImports": true,
|
|
9
|
+
"target": "ES2021",
|
|
10
|
+
"sourceMap": true,
|
|
11
|
+
"outDir": "./dist",
|
|
12
|
+
"baseUrl": "./",
|
|
13
|
+
"incremental": true,
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
"strictNullChecks": false,
|
|
16
|
+
"noImplicitAny": false,
|
|
17
|
+
"strictBindCallApply": false,
|
|
18
|
+
"forceConsistentCasingInFileNames": false,
|
|
19
|
+
"noFallthroughCasesInSwitch": false
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2020",
|
|
4
|
+
"module": "commonjs",
|
|
5
|
+
"rootDir": "./src",
|
|
6
|
+
"outDir": "./dist",
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"forceConsistentCasingInFileNames": true,
|
|
9
|
+
"strict": true,
|
|
10
|
+
"skipLibCheck": true
|
|
11
|
+
},
|
|
12
|
+
"include": ["src/**/*"],
|
|
13
|
+
"exclude": ["node_modules"]
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repoburg",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.32",
|
|
4
4
|
"description": "A local AI-powered software developer assistant that runs on your own machine.",
|
|
5
5
|
"author": "Celal Ertug",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"postinstall": "node postinstall.js",
|
|
24
|
-
"build": "npm run build -w backend && npm run build -w frontend && npm run build -w website && npm run build -w daemon",
|
|
25
24
|
"start": "cross-env NODE_ENV=production concurrently \"npm:start:backend\" \"npm:start:frontend\"",
|
|
26
25
|
"start:backend": "NODE_ENV=production npm run start -w backend",
|
|
27
26
|
"start:frontend": "npm run start -w frontend",
|
|
@@ -30,11 +29,8 @@
|
|
|
30
29
|
"dev:website": "npm run dev -w website",
|
|
31
30
|
"start:daemon": "npm run start -w daemon",
|
|
32
31
|
"dev:daemon": "npm run dev -w daemon",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"cp:daemon": "cp -r release/ ~/github/repoburg-npm/release/ && cp platform-cli.js ~/github/repoburg-npm/",
|
|
36
|
-
"lo:pack": "npm run package:daemon && npm run package:backend && npm run cp:daemon",
|
|
37
|
-
"lo:publish:locally": "npm i -g ."
|
|
32
|
+
"lo:build": "npm run build -w backend && npm run build -w frontend && npm run build -w website && npm run build -w daemon",
|
|
33
|
+
"lo:publish": "npm publish"
|
|
38
34
|
},
|
|
39
35
|
"dependencies": {
|
|
40
36
|
"@nestjs/common": "^10.0.0",
|
|
@@ -52,23 +48,9 @@
|
|
|
52
48
|
"concurrently": "^8.2.2",
|
|
53
49
|
"cors": "^2.8.5",
|
|
54
50
|
"cross-env": "^7.0.3",
|
|
55
|
-
"
|
|
56
|
-
"eta": "^3.4.0",
|
|
57
|
-
"express": "^4.19.2",
|
|
58
|
-
"fs-extra": "^11.2.0",
|
|
59
|
-
"glob": "^10.3.10",
|
|
60
|
-
"gpt-tokenizer": "^3.0.0",
|
|
61
|
-
"jose": "^5.6.3",
|
|
62
|
-
"libphonenumber-js": "^1.12.10",
|
|
63
|
-
"open": "^10.1.0",
|
|
64
|
-
"pm2": "^5.4.0",
|
|
65
|
-
"reflect-metadata": "^0.1.13",
|
|
66
|
-
"rxjs": "^7.8.1",
|
|
67
|
-
"sqlite3": "^5.1.6",
|
|
68
|
-
"typeorm": "^0.3.17",
|
|
69
|
-
"ws": "^8.17.1"
|
|
51
|
+
"open": "^10.1.0"
|
|
70
52
|
},
|
|
71
53
|
"devDependencies": {
|
|
72
|
-
"@yao-pkg/pkg": "^5.
|
|
54
|
+
"@yao-pkg/pkg": "^5.8.1"
|
|
73
55
|
}
|
|
74
56
|
}
|
|
Binary file
|