-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.09 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
{
"name": "imprint",
"version": "1.0.0-alpha.2",
"private": true,
"description": "An small, intuitive app to flash ISOs and disk images to external drives e.g. USB drives.",
"license": "Apache-2.0",
"author": "retrixe",
"repository": "https://github.com/retrixe/imprint.git",
"scripts": {
"lint": "tsc --noEmit && oxfmt --check && eslint --cache --cache-strategy content --cache-location .parcel-cache/ .",
"dev": "parcel renderer/index.html & DEBUG=true go run -ldflags=\"-s -w -X main.overrideUrl=http://localhost:1234/\" . & echo Starting...",
"start": "parcel build renderer/index.tsx && DEBUG=true go run .",
"build": "parcel build renderer/index.tsx --no-source-maps && yarn build:go",
"build:go": "run-script-os",
"build:go:default": "go build -ldflags=\"-s -w\" -o imprint -v",
"build:go:windows": "go build -ldflags=\"-s -w -H windowsgui\" -o imprint.exe -v"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/joy": "5.0.0-beta.52",
"jsbi": "^4.3.2",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@parcel/transformer-sass": "2.16.4",
"@tsconfig/vite-react": "^7.0.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"oxfmt": "^0.40.0",
"parcel": "^2.16.4",
"process": "^0.11.10",
"run-script-os": "^1.1.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"engines": {
"browsers": "ie >= 9"
},
"packageManager": "yarn@4.13.0",
"output": "dist/index.js",
"targets": {
"output": {
"context": "browser",
"outputFormat": "global",
"sourceMap": {
"inline": true,
"inlineSources": true
}
}
}
}