forked from richtr/NoSleep.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.28 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
{
"name": "@zakj/no-sleep",
"version": "0.13.5",
"author": "Zak Johnson <[email protected]> (https://zakj.net)",
"contributors": [
"Rich Tibbett"
],
"license": "MIT",
"description": "Prevent display sleep and enable wake lock in any Android or iOS web browser",
"keywords": [
"nosleep",
"wake lock",
"wakelock",
"screen",
"display",
"sleep"
],
"repository": {
"type": "git",
"url": "https://github.com/zakj/NoSleep.js.git"
},
"prettier": "@zakj/prettier-config",
"eslintConfig": {
"extends": "@zakj",
"env": {
"node": true
}
},
"devDependencies": {
"@types/dom-screen-wake-lock": "^1.0.1",
"@zakj/eslint-config": "^2.0.0",
"@zakj/prettier-config": "^2.0.0",
"prettier": "^3.0.3",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0"
},
"homepage": "https://github.com/zakj/NoSleep.js",
"bugs": {
"url": "https://github.com/zakj/NoSleep.js/issues"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/no-sleep.umd.cjs",
"module": "./dist/no-sleep.js",
"types": "./dist/no-sleep.d.ts",
"exports": {
".": {
"import": "./dist/no-sleep.js",
"require": "./dist/no-sleep.umd.cjs"
}
},
"scripts": {
"lint": "prettier --check lib",
"build": "vite build"
}
}