-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.16 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
{
"name": "cc-wrap",
"version": "1.2.0",
"description": "cc-wrap Desktop",
"main": "src/main/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder build --win",
"build:mac": "electron-builder build --mac",
"rebuild": "electron-rebuild",
"test": "jest --verbose",
"test:e2e": "playwright test",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit"
},
"build": {
"appId": "com.ccwrap.desktop",
"productName": "cc-wrap",
"files": [
"src/**/*",
"node_modules/**/*",
"icon.ico",
"icon.icns"
],
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "icon.icns",
"artifactName": "${productName} Setup ${version}.${ext}",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "nsis",
"icon": "icon.ico",
"artifactName": "${productName} Setup ${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.45.0",
"electron": "^28.0.0",
"electron-builder": "^24.13.3",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.4.2",
"prettier": "^3.8.3",
"typescript": "^5.5.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@xterm/addon-fit": "^0.11.0",
"docx": "^9.6.1",
"electron-store": "^8.2.0",
"highlight.js": "^11.9.0",
"iconv-lite": "^0.6.3",
"node-pty": "^1.1.0",
"pdfjs-dist": "^4.0.379",
"screenshot-desktop": "^1.15.4",
"sharp": "^0.34.5",
"tree-kill": "^1.2.2",
"undici": "^8.3.0",
"xlsx": "^0.18.5",
"xterm": "^5.3.0"
}
}