forked from fmujakitz/thinkpad-thermal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.17 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.17 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
{
"name": "thinkpad-thermal",
"version": "1.0.0",
"private": true,
"description": "Display ThinkPad thermal and fan status using /proc/acpi/ibm/thermal and /proc/acpi/ibm/fan.",
"license": "MIT",
"author": "Faris Mujakic <faris.mujakic@gmail.com>",
"type": "module",
"sideEffects": false,
"scripts": {
"clean": "rm -rf ./dist",
"build:package": "yarn clean && rollup -c && yarn package",
"copy:dist": "cp -a dist/. ~/.local/share/gnome-shell/extensions/thinkpadthermal@moonlight.drive.vk.gmail.com",
"dev": "yarn clean && yarn ts:compile && yarn copy:dist",
"package": "cd ./dist && zip -qr 'thinkpadthermal@moonlight.drive.vk.gmail.com.zip' . && cd ..",
"schema:compile": "glib-compile-schemas resources/schemas/",
"ts:compile": "tsc --build tsconfig.json && cp -a resources/. dist"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@girs/gjs": "^4.0.0-beta.21",
"@girs/gnome-shell": "^47.0.2",
"@rollup/plugin-typescript": "^11.1.5",
"rollup": "^4.2.0",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.8.1",
"typescript": "^5.2.2"
},
"url": "https://github.com/fmujakitz/thinkpad-thermal"
}