-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.63 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": "@paymoapp/real-idle",
"version": "1.1.1",
"description": "Detect if the system is really idle or the user is just watching a video",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "prebuild-install -r napi || node-gyp rebuild",
"demo": "electron demo/electron.js --no-sandbox",
"clean": "node-gyp clean && rimraf dist",
"build": "npm run clean && npm run build:ts && npm run build:gyp",
"build:ts": "tsc",
"build:gyp": "node-gyp rebuild",
"prebuild": "prebuild --all -r napi --strip",
"typecheck": "tsc --noEmit",
"lint": "esw --color --ext .ts src",
"lint:fix": "esw --color --fix --ext .ts src",
"lint:watch": "esw --color --fix --watch --cache --ext .ts src",
"format": "prettier --write src",
"generate:readme-toc": "markdown-toc -i --bullets=\"-\" --maxdepth=4 README.md",
"release": "standard-version",
"release:pre": "standard-version --prerelease"
},
"binary": {
"napi_versions": [
6
]
},
"files": [
"binding.gyp",
"dist/",
"module/"
],
"repository": {
"type": "git",
"url": "https://github.com/paymoapp/node-real-idle"
},
"keywords": [
"node",
"addon",
"idle",
"system idle",
"power requests"
],
"author": "Paymo LLC",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"electron": "^21.2.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-watch": "^8.0.0",
"markdown-toc": "^1.2.0",
"node-gyp": "^9.3.0",
"prebuild": "^13.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"typescript": "^4.8.4"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.1.2"
},
"standard-version": {
"scripts": {
"prerelease": "git fetch --all --tags"
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "imp",
"section": "Improvements"
},
{
"type": "ci",
"section": "Build/CI"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "test",
"section": "Testing"
}
]
}
}