-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 KB
/
package.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "overide",
"version": "0.2.0",
"description": "This is a CLI based Code Generation Tool.",
"type": "commonjs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"bin": {
"overide": "dist/index.js"
},
"files": [
"assets",
"dist"
],
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsup ./src/index.ts --format cjs,esm",
"dev": "tsup ./src/index.ts --watch",
"lint:check": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"overide": "node dist/index.js",
"release": "pnpm build && changeset publish"
},
"author": "Abhijeet Dash",
"license": "GPL-2.0",
"dependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.9.0",
"chokidar": "^4.0.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fast-cosine-similarity": "^1.2.2",
"fuzzball": "^2.1.3",
"groq-sdk": "^0.7.0",
"inquirer": "^11.1.0",
"open": "^10.1.0",
"openai": "^4.67.2",
"three": "^0.170.0",
"tree-sitter": "^0.22.0",
"tree-sitter-c": "^0.23.1",
"tree-sitter-c-sharp": "^0.23.0",
"tree-sitter-cpp": "^0.23.1",
"tree-sitter-go": "^0.23.1",
"tree-sitter-java": "^0.23.2",
"tree-sitter-javascript": "^0.23.0",
"tree-sitter-python": "^0.23.2",
"tree-sitter-ruby": "^0.23.0",
"tree-sitter-typescript": "^0.23.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.11.1",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.11.1",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"prettier": "^3.3.3",
"tsup": "^8.3.5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/oi-overide/oi.git"
}
}