-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1 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
{
"name": "judge0-ide",
"description": "Free and open-source online code editor and compiler",
"version": "3.0.0",
"main": "main.js",
"author": {
"name": "Judge0",
"email": "contact@judge0.com"
},
"repository": {
"type": "git",
"url": "https://github.com/judge0/ide.git"
},
"bugs": {
"url": "https://github.com/judge0/ide/issues"
},
"scripts": {
"start": "electron --trace-warnings .",
"dev": "tailwindcss -i ./css/ide.css -o ./dist/output.css --watch",
"tailwind:build": "tailwindcss -i ./css/ide.css -o ./dist/output.css"
},
"build": {
"appId": "com.judge0.ide",
"productName": "Judge0 IDE",
"files": [
"**/*"
],
"linux": {
"target": [
"AppImage"
],
"category": "Development",
"icon": "favicons/"
}
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"electron": "^34.0.2",
"postcss": "^8.5.2",
"tailwindcss": "^4.0.6"
},
"dependencies": {
"@tailwindcss/cli": "^4.0.6"
}
}