forked from alexpinel/Dot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.25 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
{
"name": "dot",
"productName": "Dot",
"version": "0.9.2",
"description": "Dot",
"main": "src/index.js",
"scripts": {
"tail": "tailwindcss -i ./src/index.css -o ./src/dist/output.css --watch",
"build": "webpack",
"start": "electron .",
"lint": "echo \"No linting configured\"",
"dist": "electron-builder --publish never"
},
"keywords": [],
"author": {
"name": "Alex Pinel",
"email": ""
},
"license": "GPL-3.0-only",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dompurify": "^3.0.6",
"electron-squirrel-startup": "^1.0.0",
"flowbite": "^2.2.1",
"fs-extra": "^10.1.0",
"jquery": "^3.7.1",
"katex": "^0.16.10",
"markdown-it": "^13.0.2",
"marked": "^11.0.0",
"naudiodon2": "^2.4.0",
"node-fetch": "^2.6.7",
"node-record-lpcm16": "^1.0.1",
"node-wav-player": "^0.2.0",
"play-sound": "^1.1.6",
"python3": "^0.0.1",
"requirejs": "^2.3.6",
"sax": "^1.3.0",
"sherpa-onnx": "^1.9.24",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"universalify": "^2.0.1",
"virtualenv": "^0.3.1",
"wavefile": "^11.0.0"
},
"devDependencies": {
"@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",
"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.89.0",
"webpack-cli": "^5.1.4"
},
"build": {
"asar": true,
"asarUnpack": [
"**/node_modules/node-fetch/**/*"
],
"appId": "io.dot.app",
"productName": "Dot",
"icon": "./src/Assets/MacOS_Icon.icns",
"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",
"extraResources": {
"from": "/Users/alexpinel/Desktop/llm",
"to": "llm",
"filter": [
"**/*",
"!**/.git/**/*"
]
}
}
}