-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.51 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.51 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "peep",
"version": "1.0.2",
"description": "System monitor - A visually impressive system monitor for macOS",
"main": "dist/main/main.js",
"scripts": {
"build:native": "cd native && cargo build --release && cd .. && npx cargo-cp-artifact -ac peep-native ./native/index.node -- cargo build --message-format=json-render-diagnostics --release --manifest-path=native/Cargo.toml",
"build:ts": "tsc",
"build:renderer": "webpack --mode production",
"build": "npm run build:native && npm run build:ts && npm run build:renderer",
"start": "npm run build && electron .",
"dev:renderer": "webpack --mode development --watch",
"package": "npm run build && electron-builder --mac",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"system",
"monitor",
"performance",
"electron",
"macos"
],
"author": "",
"license": "MIT",
"dependencies": {
"chart.js": "^4.5.1",
"react": "^19.2.1",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@neon-rs/cli": "^0.1.82",
"@types/electron": "^1.4.38",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"cargo-cp-artifact": "^0.1.9",
"css-loader": "^7.1.2",
"electron": "^39.2.5",
"electron-builder": "^26.0.12",
"html-webpack-plugin": "^5.6.5",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1"
},
"build": {
"appId": "com.peep.systemmonitor",
"productName": "Peep",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"files": [
"dist/**/*",
"native/index.node",
"package.json"
],
"mac": {
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
],
"icon": "assets/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"dmg": {
"title": "${productName} ${version}",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"directories": {
"output": "release"
},
"publish": {
"provider": "github",
"owner": "glenthomas",
"repo": "peep"
}
}
}