-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "thememanagerhelper",
"version": "1.0.0",
"description": "Helper for boformer's Theme Manager mod",
"main": "app/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "webpack --config ./webpack.config.js",
"start": "npm run compile && electron ./dist/main.js",
"build": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=true webpack --config ./webpack.production.config.js && electron-builder"
},
"files": [
"./dist/**/*"
],
"build": {
"files": [
"./dist/**/*"
],
"appId": "moe.armory.thememanagerherlp",
"mac": {
"category": "public.app-category.games"
},
"extraMetadata": {
"main": "dist/main.js"
},
"extends": null
},
"author": "moses",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.7.2"
},
"devDependencies": {
"electron": "^19.0.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"css-loader": "^6.7.1",
"eslint": "^8.16.0",
"eslint-plugin-react": "^7.30.0",
"html-webpack-plugin": "^5.5.0",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
}
}