-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@twistezo/time-on-battery-m1",
"bin": {
"tob": "build/index.js",
"time-on-battery": "build/index.js",
"time-on-battery-m1": "build/index.js"
},
"version": "3.3.0",
"description": "Mac OS app for measure real elapsed time on battery between charging. Without sleeping time unlike in system's Activity Monitor. Requires Big Sur and M1 processor.",
"homepage": "https://github.com/twistezo/time-on-battery-m1",
"author": "twistezo",
"license": "MIT",
"keywords": [
"time",
"battery",
"m1",
"macos"
],
"repository": {
"type": "git",
"url": "git+https://github.com/twistezo/time-on-battery-m1.git"
},
"bugs": {
"url": "https://github.com/twistezo/time-on-battery-m1/issues"
},
"scripts": {
"start": "ts-node src/index.ts",
"start:build": "npm run build && node build/index.js",
"build": "rm -rf build && tsc",
"build:bin": "npx pkg package.json",
"prepublishOnly": "npm run build && npm run build:bin"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.1.0",
"cron": "^1.8.2",
"figlet": "^1.5.2",
"moment": "^2.29.1",
"shelljs": "^0.8.4",
"table": "^6.7.1"
},
"devDependencies": {
"@types/cron": "^1.7.3",
"@types/figlet": "^1.5.4",
"@types/shelljs": "^0.8.9",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"pkg": "^5.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"pkg": {
"targets": [
"arm64"
],
"assets": "node_modules/figlet/fonts/*",
"outputPath": "bin"
}
}