@oal-sarl/code 6.0.0
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/LICENSE.md +23 -0
- package/README.md +286 -0
- package/dist/index.js +14744 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@oal-sarl/code",
|
|
3
|
+
"version": "6.0.0",
|
|
4
|
+
"description": "Code v6 Augmented | OAL SARL | Agent de coding CLI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"author": "OAL SARL",
|
|
7
|
+
"license": "UNLICENSED",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/oal-sarl/code.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/oal-sarl/code#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/oal-sarl/code/issues"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"bin": {
|
|
24
|
+
"oal-code": "dist/index.js"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "node scripts/build.mjs",
|
|
28
|
+
"dev": "bun --watch src/index.ts",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"test": "tsc -p tsconfig.test.json && node --test .tmp-test/test/**/*.test.js && node -e \"require('fs').rmSync('.tmp-test',{recursive:true,force:true})\"",
|
|
31
|
+
"bench": "npm run build && node scripts/run-bench.mjs",
|
|
32
|
+
"swe:lite": "npm run build && node scripts/run-swe-lite.mjs",
|
|
33
|
+
"eval": "node dist/index.js eval run"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=20.0.0"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@huggingface/transformers": "^3.0.0",
|
|
40
|
+
"commander": "^12.0.0",
|
|
41
|
+
"conf": "^12.0.0",
|
|
42
|
+
"diff": "^5.2.0",
|
|
43
|
+
"fast-glob": "^3.3.2",
|
|
44
|
+
"ink": "^5.2.1",
|
|
45
|
+
"ink-select-input": "^6.0.0",
|
|
46
|
+
"ink-spinner": "^5.0.0",
|
|
47
|
+
"ink-text-input": "^6.0.0",
|
|
48
|
+
"isomorphic-git": "^1.25.6",
|
|
49
|
+
"node-fetch": "^3.3.2",
|
|
50
|
+
"open": "^10.1.0",
|
|
51
|
+
"pdf-parse": "^1.1.1",
|
|
52
|
+
"playwright": "^1.43.0",
|
|
53
|
+
"proper-lockfile": "^4.1.2",
|
|
54
|
+
"react": "^18.2.0",
|
|
55
|
+
"sharp": "^0.33.0",
|
|
56
|
+
"ts-morph": "^22.0.0",
|
|
57
|
+
"vectra": "^0.12.3",
|
|
58
|
+
"ws": "^8.16.0"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@types/diff": "^5.2.0",
|
|
62
|
+
"@types/node": "^20.0.0",
|
|
63
|
+
"@types/pdf-parse": "^1.1.4",
|
|
64
|
+
"@types/react": "^18.2.0",
|
|
65
|
+
"@types/ws": "^8.5.0",
|
|
66
|
+
"bun": "latest",
|
|
67
|
+
"typescript": "^5.3.0"
|
|
68
|
+
}
|
|
69
|
+
}
|