This repository has been archived by the owner on Jan 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.82 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
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
98
99
100
101
102
103
104
105
106
107
108
{
"name": "win-check-bat",
"main": "dist/index.js",
"version": "0.0.0-development",
"description": "Check battery health for Windows",
"keywords": [
"win-check-bat",
"windows",
"kevinnitro",
"kevinnitrog"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KevinNitroG/win-check-bat.git"
},
"author": "KevinNitroG",
"license": "MIT",
"bugs": {
"url": "https://github.com/KevinNitroG/win-check-bat/issues"
},
"homepage": "https://github.com/KevinNitroG/win-check-bat",
"bin": "bin/win-check-bat.js",
"directories": {
"bin": "bin",
"doc": "docs"
},
"type": "module",
"files": [
"dist",
"bin"
],
"scripts": {
"build:dev": "tsc && tsc-alias",
"build:prod": "npm run build:dev && rollup -c",
"check": "npm run check:lint && npm run check:format",
"check:format": "prettier --check --cache .",
"check:lint": "eslint --cache .",
"commitlint": "commitlint --edit",
"dev": "npm run build:dev && npm run start:dev",
"fix": "npm run fix:lint && npm run fix:format",
"fix:format": "prettier --write --cache .",
"fix:lint": "eslint --fix --cache .",
"lint-staged": "lint-staged",
"prepare": "node .husky/install.mjs",
"prepublishOnly": "npm run build:prod",
"start": "npm run build:prod && node dist/index.js",
"start:dev": "node build/index.js"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"commander": "^12.1.0",
"console-table-printer": "^2.12.1",
"jsdom": "^25.0.1",
"open": "^10.1.0",
"sleep-promise": "^9.1.0",
"tmp": "^0.2.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@types/tmp": "^0.2.6",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"rollup": "^4.0.0",
"semantic-release": "^24.2.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"publishConfig": {
"provenance": true
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "warn",
"version": "^10.0.0"
},
"os": {
"name": "win32",
"onFail": "warn"
}
},
"pkg": {
"targets": [
"node22-windows-arm64",
"node22-windows-x64"
],
"scripts": "dist/index.js",
"outputPath": "dist/bin"
}
}