-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.15 KB
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": "tuya-openapi",
"version": "0.4.0",
"description": "NodeJS interface for Tuya IoT devices through the Tuya OpenAPI",
"scripts": {
"test": "babel-node test.js",
"build:esm": "BABEL_ENV=build-esm npx babel lib/ --out-dir dist/esm",
"build:cjs": "BABEL_ENV=build-cjs npx babel lib/ --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": [
"tuya",
"iot"
],
"author": {
"name": "shellcatt",
"email": "xtylor@yahoo.com"
},
"license": "Apache-2.0",
"dependencies": {
"@tuya/tuya-connector-nodejs": "^2.1.2",
"@tuyapi/link": "^0.5.0",
"moment": "^2.30.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.0",
"@inquirer/input": "^1.2.16",
"@inquirer/select": "^1.3.3",
"babel-plugin-transform-import-meta": "^2.2.1",
"dotenv": "^16.4.7"
}
}