forked from fmujakitz/thinkpad-thermal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.17 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
{
"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 <[email protected]>",
"type": "module",
"scripts": {
"build": "rm -rf ./dist && rollup -c && yarn package",
"copy:dist": "cp -a dist/. ~/.local/share/gnome-shell/extensions/[email protected]",
"dev": "yarn ts:compile && yarn copy:dist",
"package": "cd ./dist && zip -qr '[email protected]' . && cd ..",
"ts:compile": "tsc --build tsconfig.json && cp -a resources/. dist",
"types:generate": "ts-for-gir generate"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@ts-for-gir/cli": "^3.2.2",
"rollup": "^4.2.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-visualizer": "^5.9.2",
"typescript": "^5.2.2"
},
"url": "https://github.com/fmujakitz/thinkpad-thermal"
}