-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.45 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "webos-tv",
"version": "0.2.0",
"description": "A promise-based package to control webOS based TVs with JavaScript.",
"main": "lib/webos-tv.js",
"module": "lib/webos-tv.esm.js",
"browser": "lib/webos-tv.iife.js",
"types": "lib/webos-tv.d.ts",
"type": "module",
"scripts": {
"start": "rollup -w -c rollup.config.ts --configPlugin typescript",
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"lint": "prettier --check 'src/**/*.ts' && eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"posttest": "codecov",
"generate-docs": "typedoc",
"prepublishOnly": "yarn build"
},
"files": [
"lib"
],
"peerDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^5.0.10",
"ws": "^8.11.0"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
},
"ws": {
"optional": true
}
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.4",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/plugin-virtual": "^3.0.2",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"codecov": "^3.8.3",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"mock-socket": "^9.3.1",
"prettier": "^3.0.3",
"rollup": "^4.1.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-externals": "^6.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2",
"ws": "^8.14.2"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Dabolus/webos-tv.git"
},
"author": "Giorgio Garasto <giorgio@garasto.me>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/Dabolus/webos-tv/issues"
},
"homepage": "/~https://github.com/Dabolus/webos-tv#readme",
"packageManager": "yarn@4.0.1"
}