-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.3 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.3 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@unfoldedcircle/integration-api",
"description": "NodeJS wrapper for the Unfolded Circle Integration API",
"version": "0.5.0",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"directories": {
"example": "examples",
"lib": "lib"
},
"dependencies": {
"bonjour-service": "^1.3.0",
"debug": "^4.4.3",
"ws": "^8.20.0"
},
"devDependencies": {
"@ava/typescript": "^6.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.5",
"@types/ws": "^8.18.0",
"ava": "^6.4.1",
"copyfiles": "^2.4.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.15.0",
"prettier": "^3.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.57.1"
},
"scripts": {
"format": "prettier --write .",
"code-check": "prettier --check . && eslint .",
"lint": "eslint --fix",
"test": "npx tsc && ava dist/test/**/*.test.js",
"build": "npm run build:cjs && npm run build:mjs",
"build:mjs": "tsc --project tsconfig.mjs.json && cp res/package.mjs.json dist/mjs/package.json",
"build:cjs": "tsc --project tsconfig.cjs.json && cp res/package.cjs.json dist/cjs/package.json",
"build:win": "npm run build:cjs-win && npm run build:mjs-win",
"build:mjs-win": "tsc --project tsconfig.mjs.json && xcopy .\\res\\package.mjs.json .\\dist\\mjs\\package.json /-I /Y",
"build:cjs-win": "tsc --project tsconfig.cjs.json && xcopy .\\res\\package.cjs.json .\\dist\\cjs\\package.json /-I /Y",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfoldedcircle/integration-node-library.git"
},
"keywords": [
"unfoldedcircle",
"remotetwo",
"smartremote",
"api",
"integration"
],
"author": "Unfolded Circle",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/unfoldedcircle/integration-node-library/issues"
},
"homepage": "https://unfoldedcircle.com",
"engines": {
"node": ">=22.13.0"
},
"files": [
"dist"
]
}