-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
{
"name": "aitray",
"version": "1.0.0",
"description": "A cross-platform app running in background to help users with fast AI insights over the clipboard history",
"main": "build/main.js",
"bin": "build/main.js",
"author": "Pedro Lira",
"license": "MIT",
"readme": "README.md",
"icon": "public/images/logo128x128.png",
"repository": {
"url": "https://github.com/pedrohml/aitrayjs"
},
"dependencies": {
"electron": "^22.2.0",
"electron-settings": "^4.0.2",
"openai": "^3.2.1",
"typescript": "^4.9.4"
},
"files": [
"layouts/",
"lib/",
"public/",
"LICENSE",
"README.md",
"package.json",
"tsconfig.json",
".eslintrc.yml"
],
"keywords": ["app", "cross-platform", "clipboard", "ai"],
"scripts": {
"start": "electron build/main.js",
"build": "tsc",
"forge-start": "electron-forge start",
"forge-package": "electron-forge package",
"forge-make": "electron-forge make",
"postinstall": "npm run build"
},
"devDependencies": {
"electron": "^22.2.0",
"@electron-forge/cli": "^6.0.4",
"@electron-forge/maker-deb": "^6.0.4",
"@electron-forge/maker-squirrel": "^6.0.4",
"@electron-forge/maker-zip": "^6.0.4",
"eslint-plugin-import": "^2.27.5"
}
}