-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "orin-ide",
"version": "1.0.9",
"description": "AI-powered browser-based coding environment with terminal, file system, multi-model AI chat, diff viewer, HTML preview, free image API, snippet palette, and project-wide find & replace.",
"author": "Nandan Das <nandandas2407@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/nandandas2407-web/orin-ide#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nandandas2407-web/orin-ide.git"
},
"bugs": {
"url": "https://github.com/nandandas2407-web/orin-ide/issues"
},
"keywords": [
"ide",
"browser-ide",
"ai",
"coding",
"editor",
"openrouter",
"terminal",
"web-ide",
"deepseek",
"monaco",
"code-editor",
"html-preview",
"image-api",
"portfolio-generator",
"diff-viewer"
],
"main": "backend/server.js",
"bin": {
"orin-ide": "./bin/orin-ide.js"
},
"scripts": {
"start": "node backend/server.js",
"setup": "bash setup.sh",
"postinstall": "node bin/postinstall.js"
},
"dependencies": {
"archiver": "^8.0.0",
"body-parser": "^2.2.2",
"chokidar": "^5.0.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"mime-types": "^3.0.2",
"multer": "^2.1.1",
"unzipper": "^0.12.3",
"ws": "^8.21.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"backend/",
"frontend/",
"README.md",
"LICENSE",
"setup.sh",
"start.sh"
]
}