-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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": "tuya-smartlife-api",
"version": "0.8.3",
"description": "Library/CLI interface for Tuya IoT devices through the Smart Life API",
"bin": {
"tuyacli": "./dist/cjs/cli.js"
},
"scripts": {
"test": "mocha --require @babel/register --timeout 240000 'tests/**/*.test.*s'",
"build:esm": "BABEL_ENV=build-esm npx babel src/ --out-dir dist/esm",
"build:cjs": "BABEL_ENV=build-cjs npx babel src/ --out-dir dist/cjs",
"build": "npm run build:esm && npm run build:cjs",
"clean": "rm -rf dist/*"
},
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
},
"keywords": [
"cli",
"tuya",
"iot",
"smartlife",
"homeassistant"
],
"author": {
"name": "shellcatt",
"email": "xtylor@yahoo.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shellcatt/tuya-smartlife-api-node/issues"
},
"homepage": "https://github.com/shellcatt/tuya-smartlife-api-node#readme",
"dependencies": {
"@colors/colors": "^1.6.0",
"@inquirer/input": "^4.0.2",
"@inquirer/password": "^4.0.2",
"@inquirer/select": "^1.3.3",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"configstore": "^5.0.1",
"debug": "^4.4.0",
"dotenv": "^16.3.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"babel-plugin-transform-import-meta": "^2.2.1",
"chai": "^4.5.0",
"mocha": "^10.8.2"
}
}