-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
122 lines (122 loc) · 3.89 KB
/
package.json
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
116
117
118
119
120
121
122
{
"name": "dot",
"productName": "Dot",
"version": "0.9.3",
"description": "Dot",
"main": "src/index.js",
"scripts": {
"tail": "tailwindcss -i ./src/index.css -o ./src/dist/output.css --watch",
"build": "electron-builder build",
"start": "electron .",
"lint": "echo \"No linting configured\"",
"dist": "electron-builder --publish never",
"package": "electron-builder"
},
"keywords": [],
"author": {
"name": "Alex Pinel",
"email": ""
},
"license": "GPL-3.0-only",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"aadotllm": "file:aadotllm",
"axios": "^1.6.8",
"bindings": "^1.5.0",
"class-variance-authority": "^0.7.0",
"cli-progress": "^3.12.0",
"clsx": "^2.1.0",
"dompurify": "^3.0.6",
"electron-is-dev": "^3.0.1",
"electron-squirrel-startup": "^1.0.0",
"flowbite": "^2.2.1",
"fs-extra": "^10.1.0",
"jquery": "^3.7.1",
"katex": "^0.16.10",
"mammoth": "^1.7.2",
"markdown-it": "^13.0.2",
"marked": "^11.0.0",
"naudiodon2": "^2.4.0",
"node-aplay": "^1.0.3",
"node-fetch": "^2.6.7",
"node-record-lpcm16": "^1.0.1",
"node-wav-player": "^0.2.0",
"pickleparser": "^0.2.1",
"play-sound": "^1.1.6",
"python3": "^0.0.1",
"requirejs": "^2.3.6",
"sax": "^1.3.0",
"speaker": "^0.5.5",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"universalify": "^2.0.1",
"virtualenv": "^0.3.1",
"wav-decoder": "^1.3.0",
"wavefile": "^11.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@electron-forge/cli": "^6.4.2",
"@electron-forge/maker-deb": "^6.4.2",
"@electron-forge/maker-dmg": "^7.2.0",
"@electron-forge/maker-rpm": "^6.4.2",
"@electron-forge/maker-squirrel": "^6.4.2",
"@electron-forge/maker-zip": "^6.4.2",
"@electron-forge/plugin-auto-unpack-natives": "^6.4.2",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"cmake-js": "^7.3.0",
"electron": "26.2.4",
"electron-builder": "^24.6.4",
"electron-notarize": "^1.2.2",
"ncp": "^2.0.0",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"postcss-loader": "^7.3.4",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"tailwindcss": "^3.4.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"build": {
"asar": true,
"asarUnpack": [
"aadotllm/**",
"node_modules/**"
],
"appId": "io.dot.app",
"productName": "Dot",
"icon": "./src/Assets/MacOS_Icon.icns",
"win": {
"target": "nsis-web",
"icon": "./src/Assets/App_Icon.ico"
},
"nsisWeb": {
"oneClick": "true",
"appPackageUrl": "https://github.com/alexpinel/Dot/releases/download/v0.9.2",
"createDesktopShortcut": "always"
},
"mac": {
"category": "public.app-category.utilities",
"minimumSystemVersion": "12.0",
"target": [
{
"target": "default",
"arch": [
"arm64"
]
}
],
"icon": "./src/Assets/MacOS_Icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist"
},
"afterSign": "./src/notarize.js"
}
}