-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 2.45 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
{
"name": "tagasaurus",
"version": "1.5.1",
"description": "Tag your Planet!",
"author": "Alexander V. Mantzaris",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mantzaris/Tagasaurus.git"
},
"homepage": "https://github.com/mantzaris/Tagasaurus#readme",
"bugs": {
"url": "https://github.com/mantzaris/Tagasaurus/issues"
},
"keywords": [
"tagging",
"documenter",
"photos",
"comments",
"memes",
"emoticons",
"sentiment",
"hastags"
],
"main": "main.js",
"postinstall": "electron-builder install-app-deps",
"scripts": {
"clean": "rm -rf ./node_modules package-lock.json ./dist",
"rebuild": "npm run clean && npm install && DEBUG=electron-rebuild npm rebuild && npx electron-rebuild",
"dev": "electron .",
"build": "electron-builder $OSTARGETS",
"format": "npx prettier --write ./AppCode/",
"build-win-nsis": "electron-builder --win=nsis",
"build-win-zip": "electron-builder --win=zip"
},
"devDependencies": {
"cross-env": "^7.0.3",
"electron": "30.0.8",
"electron-builder": "^24.6.3",
"electron-rebuild": "3.2.9",
"electron-reload": "^1.5.0",
"prettier": "2.8.1"
},
"dependencies": {
"@ffmpeg/core": "^0.11.0",
"@ffmpeg/ffmpeg": "^0.11.1",
"@tensorflow/tfjs-node": "^4.17.0",
"@vladmandic/face-api": "^1.7.7",
"archiver": "^5.3.1",
"better-sqlite3": "^10.0.0",
"decode-gif": "^1.0.1",
"dotenv": "^16.0.3",
"extract-zip": "^2.0.1",
"faiss-napi": "^0.10.1",
"file-type": "^16.5.3",
"fs-extra": "^10.0.0",
"masonry-layout": "^4.2.2",
"ml-kmeans": "^6.0.0",
"stopword": "^3.0.1",
"wink-tokenizer": "^5.3.0"
},
"selfUpdate": false,
"build": {
"appId": "tagasaurus",
"asar": true,
"files": [
"!.github",
"!README.md",
"!.vscode",
"!.prettierrc.json",
"!tgdev.sh"
],
"extraResources": [
{
"from": "./LinuxRunOnExternalMedia",
"to": "../LinuxRunOnExternalMedia"
}
],
"linux": {
"icon": "Assets/taga-icon/TagaIcon512x512.png",
"asarUnpack": [
"node_modules/faiss-napi/build/Release/*"
],
"maintainer": "mantzaris",
"category": "utility"
},
"win": {
"icon": "Assets/taga-icon/TagaIcon512x512.png",
"asarUnpack": [
"node_modules/faiss-napi/build/Release/*"
]
},
"portable": {
"artifactName": "tagasaurus.app"
}
}
}