-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
65
66
67
68
69
70
{
"name": "executeme",
"displayName": "Executeme Server",
"version": "0.0.3",
"description": "A robust and secure backend service for executing user-submitted code in isolated Docker containers. Supports multiple programming languages like Python, Node.js, and Java, with resource limiting for safe execution. Ideal for online compilers, coding platforms, and educational tools.",
"scripts": {
"dev": "nodemon app.js",
"test": "vitest run --reporter verbose --pool forks",
"start": "node --trace-warnings app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlopersabbir/executeme.git"
},
"keywords": [
"code-executor",
"online-compiler",
"backend",
"docker",
"code-runner",
"nodejs",
"python",
"java",
"code-execution",
"api",
"restful",
"open-source",
"containerization",
"programming-platform",
"educational-tool",
"sandbox"
],
"author": {
"email": "devlopersabbir@gmail.com",
"name": "Sabbir Hossain Shuvo",
"url": "https://devlopersabbir.github.io"
},
"bugs": {
"url": "https://github.com/devlopersabbir/executeme/issues"
},
"homepage": "https://github.com/devlopersabbir/executeme#readme",
"license": "MIT",
"main": "app.js",
"type": "module",
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"node-cache": "^5.1.2",
"socket.io": "^4.8.1",
"util": "^0.12.5",
"uuid": "^11.1.0"
},
"devDependencies": {
"dotenv": "^16.6.0",
"dotenv-expand": "^12.0.3",
"node": "^24.8.0",
"nodemon": "^3.1.10",
"vitest": "^3.2.4"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/devlopersabbir"
},
{
"type": "patreon",
"url": "https://www.patreon.com/devlopersabbir"
}
]
}