-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.34 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
{
"name": "imprint",
"version": "1.0.0-alpha.2",
"description": "An small, intuitive app to flash ISOs and disk images to external drives e.g. USB drives.",
"repository": "https://github.com/retrixe/imprint.git",
"author": "retrixe",
"license": "Apache-2.0",
"private": true,
"scripts": {
"lint": "eslint . && tsc --noEmit",
"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"
},
"packageManager": "yarn@4.5.1",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/joy": "5.0.0-beta.48",
"jsbi": "^4.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@parcel/transformer-sass": "2.12.0",
"@tsconfig/vite-react": "^3.0.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"process": "^0.11.10",
"run-script-os": "^1.1.6",
"typescript": "^5.6.3"
},
"engines": {
"browsers": "ie >= 9"
},
"output": "dist/index.js",
"targets": {
"output": {
"context": "browser",
"outputFormat": "global",
"sourceMap": {
"inline": true,
"inlineSources": true
}
}
},
"prettier": {
"printWidth": 100,
"arrowParens": "avoid",
"singleQuote": true,
"jsxSingleQuote": true,
"semi": false,
"endOfLine": "auto"
}
}