-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 977 Bytes
/
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
{
"name": "ecoflow-api",
"private": true,
"keywords": [
"ecoflow",
"api",
"rest",
"smart home",
"home automation",
"diy"
],
"author": {
"email": "felix.hofmann@rustyy.de",
"name": "Felix Hofmann",
"url": "https://www.rustyy.de"
},
"repository": {
"type": "git",
"url": "https://github.com/rustyy/ecoflow-api.git"
},
"scripts": {
"bootstrap": "npm i",
"docs": "typedoc",
"build": "turbo build",
"test": "turbo test",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"publish-packages": "turbo run build && changeset publish",
"clean": "npx -y rimraf -g **/node_modules **/dist **/.turbo"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "^2.0.9",
"typedoc": "^0.26.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.4.0",
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {
"@changesets/cli": "^2.27.3"
}
}