-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.16 KB
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
{
"name": "locode",
"version": "1.0.0",
"description": "Web-based AI coding assistant using local files and SiliconFlow API",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "echo \"No linting configured yet\"",
"build": "echo \"No build step required\"",
"test": "echo \"No tests configured yet\" && exit 0"
},
"keywords": [
"ai",
"coding",
"assistant",
"web",
"monaco-editor",
"code-editor",
"siliconflow",
"chatgpt",
"programming",
"development"
],
"author": "Locode Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lloyd-c137/locode.git"
},
"bugs": {
"url": "https://github.com/lloyd-c137/locode/issues"
},
"homepage": "https://github.com/lloyd-c137/locode#readme",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"axios": "^1.6.2",
"better-sqlite3": "^12.6.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"iconv-lite": "^0.7.2",
"ws": "^8.14.2"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}