-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "yoyoapi",
"version": "0.7.8",
"description": "API Wrapper for YoLink Devices",
"repository": {
"type": "git",
"url": "https://github.com/vbuser2004/yoyoapi"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**"
],
"scripts": {
"build": "rm -rf dist/ && pnpm build:esm",
"build:esm": "tsc",
"dev": "tsc && node ./dist/index.js",
"test": "jest",
"coverage": "jest --coverage"
},
"keywords": [
"yosmart",
"yolink"
],
"author": "vbuser2004",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.8",
"@types/node": "^20.8.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"zod": "^3.22.4"
}
}