-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.97 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
{
"name": "codemotion-app",
"version": "0.0.7-alpha.dev",
"description": "Web-First Code Editor",
"author": "Yurba.Developers",
"main": "app/dist/main.js",
"scripts": {
"build": "tsc",
"cdbuild": "cd codemirror && npm i && npm run build",
"start": "npm run cdbuild && npm run build && electron .",
"dist": "npm run cdbuild && npm run build && electron-builder",
"dist-linux": "npm run cdbuild && npm run build && electron-builder --linux"
},
"build": {
"appId": "com.codemotion",
"productName": "CodeMotion",
"files": [
"ace/**/*",
"codemirror/**/*",
"app/**/*",
"assets/**/*",
"helpers/**/*",
"html/**/*",
"languages/**/*"
],
"extraResources": [
{
"from": "extensions",
"to": "extensions"
}
],
"win": {
"target": "nsis",
"icon": "assets/media/builder-icons/codemotion-icon.ico"
},
"mac": {
"target": "dmg"
},
"linux": {
"category": "Development",
"target": "AppImage",
"syncDesktopName": true,
"icon": "assets/media/codemotion_icon.png"
}
},
"devDependencies": {
"@types/electron": "^1.4.38",
"@types/node": "^25.9.1",
"electron": "^39.2.3",
"electron-builder": "^26.15.3",
"tree-sitter-go": "^0.19.1",
"typescript": "^6.0.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",
"node-global-key-listener": "^0.3.0",
"node-gyp": "^12.4.0",
"oxc-parser": "^0.140.0",
"tar": "^7.5.19",
"ws": "^8.19.0"
}
}