-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "integration-ts-example",
"type": "module",
"version": "0.1.0",
"description": "This example demonstrates how to use the Integration Node.js library.",
"main": "dist/light.js",
"dependencies": {
"@unfoldedcircle/integration-api": "^0.2.0"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@types/debug": "^4.1.12",
"@types/node": "^22.5.5",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"ava": "^6.1.3",
"copyfiles": "^2.4.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "5.5.x"
},
"scripts": {
"format": "prettier --write .",
"code-check": "prettier --check . && eslint .",
"lint": "eslint --fix",
"build": "tsc && copyfiles \"./src/**/*.json\" dist/",
"test": "npm run build && ava dist/test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfoldedcircle/integration-ts-example.git"
},
"keywords": [
"uc",
"unfoldedcircle",
"remotetwo",
"smartremote",
"api",
"integration"
],
"author": "Unfolded Circle",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/unfoldedcircle/integration-ts-example/issues"
},
"homepage": "https://unfoldedcircle.com",
"private": true,
"engines": {
"node": ">=20.16.0"
}
}