-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.36 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.36 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
{
"name": "Phlexicon",
"version": "1.0.1",
"description": "A phonetic catalog for lexicons: Study a language. Document vocabulary. Analyze accents.",
"main": "build/main.js",
"author": "https://github.com/mxskylar <11418651+mxskylar@users.noreply.github.com>",
"license": "GNU General Public License v3.0",
"type": "module",
"scripts": {
"install-resources-data": "npx tsx ci/postinstall/install-resources-data.ts",
"rebuild-sqlite3": "electron-rebuild -f -w sqlite3",
"postinstall": "npm run install-resources-data && npm run rebuild-sqlite3",
"init-app": "npx tsx ci/app/init.ts",
"compile-typescript": "tsc",
"compile-react": "webpack --mode development --config webpack.react.config.js",
"build": "npm run init-app && npm run compile-typescript && npm run compile-react",
"electron": "electron .",
"app": "npm run build && npm run electron",
"start": "npm install && npm run app",
"dist-mac": "electron-builder -m",
"dist-win": "electron-builder -w",
"dist-linux": "electron-builder -l"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.4.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.10",
"@babel/plugin-transform-arrow-functions": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@electron/rebuild": "^3.7.2",
"@types/react-dom": "^19.0.4",
"babel-loader": "^10.0.0",
"csv-parse": "^5.6.0",
"electron": "^35.2.1",
"html-webpack-plugin": "^5.6.3",
"node-stream-zip": "^1.15.0",
"typescript": "^5.8.2",
"tsx": "^4.19.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"opentype.js": "^1.3.4",
"undici": "^7.8.0",
"psd": "^3.4.0",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "phlexicon.app",
"productName": "Phlexicon",
"files": ["build/**/*"],
"extraResources": [
{
"from": "./assets/",
"to": "assets/",
"filter": ["**/*"]
}
],
"mac": {
"target": {
"target": "default",
"arch": [
"arm64",
"x64"
]
}
},
"win": {
"target": {
"target": "nsis",
"arch": ["x64"]
},
"signAndEditExecutable": false
},
"nsis": {
"deleteAppDataOnUninstall": true
},
"linux": {
"category": "Utility",
"target": [
{
"target": "rpm",
"arch": ["x64"]
},
{
"target": "deb",
"arch": ["x64"]
},
{
"target": "AppImage",
"arch": ["x64"]
},
{
"target": "pacman",
"arch": ["x64"]
}
]
}
}
}