-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "reverse-engineering-utility",
"version": "0.0.0-alpha.0",
"description": "A set of tools to assist you with reverse engineering devices",
"author": {
"name": "Mola19",
"email": "Mola9041@gmail.com"
},
"license": "MIT",
"main": "packages/main/dist/index.js",
"scripts": {
"build": "npm run update-versions && npm run bundle && npm run compile",
"build:lite": "npm run update-versions && npm run bundle && npm run compile -- --dir",
"bundle": "node scripts/bundle.mjs",
"compile": "electron-builder build --config electron.builder.json",
"dev": "node scripts/watch.mjs",
"update-versions": "node ./scripts/update-versions.mjs"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"npm": "^9.6.7"
},
"devDependencies": {
"@fontsource/roboto": "^5.0.2",
"@fontsource/roboto-mono": "^5.0.2",
"@sveltejs/vite-plugin-svelte": "^2.4.1",
"@tsconfig/svelte": "^4.0.1",
"@types/node": "^20.2.5",
"electron": "^25.0.1",
"electron-builder": "^23.6.0",
"electron-updater": "^5.3.0",
"svelte": "^3.59.1",
"svelte-preprocess": "^5.0.4",
"typescript": "^5.1.3",
"vite": "^4.3.9"
},
"browserslist": [
"Chrome 114"
],
"private": true
}