-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "fx-media-controller",
"version": "0.3.0",
"private": true,
"description": "Firefox UI enhancements built around Firefox's internal MediaController API.",
"keywords": [
"autoconfig",
"firefox",
"firefox-customization",
"media-controller",
"userchrome"
],
"homepage": "https://github.com/Razz21/fx-media-controller#readme",
"license": "MIT",
"author": "Razz21",
"repository": {
"type": "git",
"url": "git+https://github.com/Razz21/fx-media-controller.git"
},
"type": "module",
"scripts": {
"dev": "concurrently \"npm:build:watch\" \"npm:typecheck:watch\"",
"build": "node build.mjs",
"build:watch": "node build.mjs --watch",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run check:deps",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"check:deps": "knip",
"gecko:generate": "node scripts/generate-gecko-media.ts",
"gecko:check": "npm run gecko:generate && npm run format && git diff --exit-code -- types/gecko-media.generated.d.ts"
},
"devDependencies": {
"@changesets/cli": "^3.0.0",
"concurrently": "^10.0.4",
"esbuild": "^0.28.2",
"knip": "^6.32.2",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"typescript": "^7.0.2",
"webidl2": "^24.5.0"
},
"engines": {
"node": ">=24"
}
}