-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.07 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
110
111
112
113
114
115
{
"name": "CodeCompanion",
"version": "5.20.0",
"description": "Natural language to code",
"copyright": "Copyright © CodeCompanion",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "cross-env NODE_ENV=development electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish": "electron-builder --publish=always",
"set-no-cache": "node scripts/setNoCache.js",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "codecompanion",
"productName": "CodeCompanion",
"publish": {
"provider": "s3",
"bucket": "codecompanion",
"region": "us-west-2",
"channel": "latest"
},
"mac": {
"target": [
{
"target": "default",
"arch": [
"universal"
]
}
],
"artifactName": "${productName}.${ext}",
"category": "public.app-category.developer-tools",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"signAndEditExecutable": true,
"publisherName": "CodeCompanion",
"artifactName": "${productName}.${ext}"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"artifactName": "${productName}-Installer.${ext}",
"uninstallDisplayName": "${productName}"
},
"dmg": {
"artifactName": "${productName}.${ext}",
"sign": true
},
"afterSign": "scripts/notarize.js"
},
"dependencies": {
"@aptabase/electron": "^0.3.1",
"@mozilla/readability": "^0.4.4",
"@postlight/parser": "^2.2.3",
"ag-grid-community": "^29.3.5",
"any-text": "^1.2.0",
"autosize": "^6.0.1",
"axios": "^1.4.0",
"bootstrap": "^5.3.0-alpha3",
"bootstrap-icons": "^1.10.5",
"crypto-js": "^4.1.1",
"electron-store": "^8.1.0",
"electron-updater": "^5.3.0",
"file-type": "^16.5.3",
"googleapis": "^124.0.0",
"graceful-fs": "^4.2.11",
"highlight.js": "^11.6.0",
"ignore": "^5.2.4",
"interactjs": "^1.10.18",
"istextorbinary": "^6.0.0",
"js-tiktoken": "^1.0.7",
"jsdom": "^22.1.0",
"langchain": "^0.0.125",
"language-detect": "^1.1.0",
"lodash": "^4.17.21",
"marked": "^4.3.0",
"marked-highlight": "^1.0.1",
"node-pty": "^1.0.0",
"openai": "^4.20.1",
"pdfjs-dist": "^3.8.162",
"read-chunk": "^3.2.0",
"uuid": "^9.0.0",
"xterm": "^5.2.1",
"xterm-addon-canvas": "^0.4.0",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-unicode11": "^0.5.0",
"xterm-addon-web-links": "^0.8.0"
},
"devDependencies": {
"aws-sdk": "^2.1415.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"electron": "^25.2.0",
"electron-builder": "^23.6.0",
"electron-notarize": "^1.2.2",
"prettier": "^3.0.1"
}
}