-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "simple-ryzen-tdp",
"version": "1.1.0",
"description": "simple TDP control for ryzenadj",
"main": "src/backend/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"package": "electron-builder -l",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"build": {
"appId": "com.aarronlee.simple-ryzen-tdp",
"productName": "Simple Ryzen TDP",
"artifactName": "SimpleRyzenTDP.${ext}",
"files": [
"**/*",
"node_modules/**/*"
],
"directories": {
"app": "./",
"output": "./dist",
"buildResources": "./build"
},
"linux": {
"target": "AppImage"
}
},
"author": "Aarron Lee",
"devDependencies": {
"electron": "^21.3.0",
"electron-builder": "^23.6.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "2.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aarron-lee/simple-ryzen-tdp.git"
},
"dependencies": {
"lodash": "^4.17.21"
}
}