-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "codecprobe",
"version": "4.7.3",
"description": "Multi-API codec testing for media server enthusiasts",
"main": "index.html",
"scripts": {
"serve": "python -m http.server 8000",
"serve:node": "npx http-server -p 8000 -c-1",
"watch:css": "sass --watch scss:css --style compressed",
"build:css": "sass scss:css --style compressed",
"build:js": "node scripts/build.js",
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && npm run build:css && npm run build:js",
"build:deploy": "npm run build && node scripts/inject-versions.js",
"dev": "npm-run-all --parallel serve watch:css"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"sass": "^1.101.0",
"terser": "^5.49.0",
"typescript": "^5.9.3",
"ua-parser-js": "^2.0.10"
},
"keywords": [
"codec",
"hevc",
"dolby-vision",
"av1",
"dts",
"media-capabilities",
"jellyfin",
"plex",
"emby",
"hdr"
],
"repository": {
"type": "git",
"url": "https://github.com/nofear0411/codecprobe.git"
},
"author": "",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nofear0411/codecprobe/issues"
},
"homepage": "https://codecprobe.dev"
}