-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "nanoleaf",
"version": "0.0.0",
"description": "A script to control nanoleaf lights",
"keywords": [
"nanoleaf"
],
"homepage": "https://github.com/hedia-team/nanoleaf#readme",
"bugs": {
"url": "https://github.com/hedia-team/nanoleaf/issues"
},
"license": "UNLICENSED",
"author": "[email protected]",
"files": [
"main.js"
],
"exports": {
".": "./main.js"
},
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hedia-team/nanoleaf.git"
},
"type": "module",
"scripts": {
"env:local": "op read op://Local/nanoleaf/ENV_FILE > .env",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"package:lint": "npx npm-package-json-lint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"start": "node main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@hedia/env": "^2.3.1"
},
"devDependencies": {
"@hedia/eslint-config": "4.0.3",
"@hedia/package-lint": "1.1.1",
"@hedia/prettier-config": "1.0.7",
"eslint-config-prettier": "9.1.0"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"prettier": "@hedia/prettier-config"
}