domoticz-api-linker
Version:
Domoticz API Javascript Bridge Connector
59 lines (58 loc) • 1.75 kB
JSON
{
"name": "domoticz-api-linker",
"version": "0.3.0",
"description": "Domoticz API Javascript Bridge Connector",
"type": "module",
"scripts": {
"type-check": "npx tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "npx tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"watch": "npx tsc -w",
"dev": "npx tsc",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"main": "dist/domoticz-api.cjs.js",
"module": "dist/domoticz-api.esm.js",
"browser": "dist/domoticz-api.iife.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/lalmat/domoticz-api.git"
},
"keywords": [
"domoticz",
"api",
"typescript"
],
"author": "Mathieu LALLEMAND",
"license": "MIT",
"bugs": {
"url": "https://github.com/lalmat/domoticz-api/issues"
},
"homepage": "https://github.com/lalmat/domoticz-api#readme",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "7.18.6",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"babel-loader": "^8.2.5",
"eslint": "^8.26.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"blueimp-md5": "^2.19.0"
}
}