-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.1 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.1 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "castkodi",
"version": "7.19.0",
"description": "WebExtension pour diffuser des vidéos et des musiques sur Kodi.",
"keywords": [
"cast",
"kodi",
"webextension",
"chrome",
"firefox",
"youtube",
"twitch",
"vimeo",
"soundcloud"
],
"homepage": "https://github.com/regseb/castkodi#readme",
"bugs": {
"url": "https://github.com/regseb/castkodi/issues",
"email": "regseb@gmail.com"
},
"license": "MIT",
"author": "Sébastien Règne <regseb@gmail.com> (https://github.com/regseb)",
"funding": [
"https://buymeacoffee.com/regseb",
"https://www.paypal.me/sebastienregne"
],
"repository": {
"type": "git",
"url": "git+https://github.com/regseb/castkodi.git"
},
"type": "module",
"scripts": {
"postinstall": "node .script/sync.js",
"lint": "metalint",
"lint:fix": "metalint --fix",
"lint:types": "tsc --project .tsconfig_lint.json",
"test": "npm run test:coverage",
"test:unit": "node --test 'test/unit/**/*.test.js'",
"test:integration": "node --test --test-concurrency 1 'test/integration/**/*.test.js'",
"test:fuzz": "node --test 'test/fuzz/**/*.test.js'",
"test:coverage": "stryker run",
"jsdocs": "typedoc --tsconfig .tsconfig_jsdocs.json",
"start:chromium": "web-ext run --source-dir src/ --target chromium",
"start:firefox": "web-ext run --source-dir src/ --target firefox-desktop",
"start:firefox-android": "web-ext run --source-dir src/ --target firefox-android --firefox-apk org.mozilla.fenix",
"build": "node .script/build.js",
"clean": "node .script/clean.js"
},
"dependencies": {
"linkedom": "0.18.12"
},
"devDependencies": {
"@biomejs/js-api": "4.0.0",
"@biomejs/wasm-nodejs": "2.4.13",
"@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
"@prantlf/jsonlint": "17.0.1",
"@prettier/plugin-xml": "3.4.2",
"@secretlint/secretlint-rule-github": "12.2.0",
"@secretlint/secretlint-rule-npm": "12.2.0",
"@stryker-mutator/core": "9.6.1",
"@stryker-mutator/tap-runner": "9.6.1",
"@types/firefox-webext-browser": "143.0.0",
"@types/jsdom": "28.0.1",
"@types/node": "25.6.0",
"addons-linter": "10.3.0",
"eslint": "9.39.3",
"eslint-plugin-array-func": "5.1.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-no-unsanitized": "4.1.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-regexp": "3.1.0",
"eslint-plugin-unicorn": "64.0.0",
"fast-check": "4.7.0",
"globals": "17.5.0",
"htmlhint": "1.9.0",
"jsdom": "29.0.2",
"markdownlint": "0.40.0",
"metalint": "0.21.2",
"mock-socket": "9.3.1",
"npm-package-json-lint": "10.2.1",
"prettier": "3.8.3",
"purgecss": "8.0.0",
"secretlint": "12.2.0",
"stylelint": "17.9.0",
"stylelint-config-recess-order": "7.7.0",
"stylelint-order": "8.1.1",
"typedoc": "0.28.19",
"typescript": "6.0.3",
"urlpattern-polyfill": "10.1.0",
"web-ext": "10.1.0",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=24.11.0"
},
"private": true
}