-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.28 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "codemotion-app",
"version": "0.0.9-alpha.dev",
"description": "Web-focused, advanced open-source code editor (IDE) with native tools for web developers",
"author": {
"name": "Yurba Developers",
"email": "dev@yurba.one"
},
"main": "app/dist/main.js",
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"test": "node --test tests/unit/*.test.mjs",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"install": "cd codemirror && npm i",
"cdbuild": "cd codemirror && npm run build",
"start": "npm run cdbuild && npm run build && electron .",
"dev": "npm start -- --d",
"dist": "npm run cdbuild && npm run build && electron-builder",
"dist-linux": "npm run cdbuild && npm run build && electron-builder --linux",
"dist-linux-portable": "npm run cdbuild && npm run build && electron-builder --linux tar.gz"
},
"build": {
"appId": "com.codemotion",
"productName": "CodeMotion",
"artifactName": "codemotion-${version}.${ext}",
"files": [
"ace/**/*",
"codemirror/**/*",
"app/**/*",
"assets/**/*",
"helpers/**/*",
"html/**/*",
"languages/**/*"
],
"extraResources": [
{
"from": "extensions",
"to": "extensions"
}
],
"win": {
"target": [
"nsis",
"portable",
"zip"
],
"icon": "assets/media/builder-icons/app.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/media/builder-icons/app.ico",
"uninstallerIcon": "assets/media/builder-icons/app.ico"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/media/builder-icons/app.png"
},
"linux": {
"category": "Development",
"target": [
"AppImage",
"deb",
"rpm",
"pacman",
"tar.gz"
],
"icon": "assets/media/builder-icons/app.png"
},
"deb": {
"maintainer": "Yurba Developers <dev@yurba.one>"
}
},
"devDependencies": {
"@biomejs/biome": "^2.5.12",
"@types/electron": "^1.4.38",
"@types/node": "^25.9.1",
"electron": "^39.8.10",
"electron-builder": "^26.15.3"
},
"dependencies": {
"@babel/parser": "^7.29.7",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"child_process": "^1.0.2",
"chokidar": "^5.0.0",
"error-stack-parser": "^2.1.4",
"flashot": "^1.4.1",
"ignore": "^7.0.6",
"node-gyp": "^12.4.0",
"node-pty": "^1.1.0",
"oxc-parser": "^0.140.0",
"tar": "^7.5.21",
"typescript": "^6.0.3",
"ws": "^8.19.0"
},
"allowScripts": {
"electron-winstaller@5.4.0": true,
"electron@39.8.10": true
},
"overrides": {
"yauzl": "^3.3.1"
}
}