-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.01 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
{
"name": "mediaforge",
"version": "0.3.0",
"description": "Fully typed TypeScript wrapper for FFmpeg — fluent API, v6/v7/v8 compatible, zero native bindings",
"type": "module",
"author": "Qasim Ali",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"bin": {
"mediaforge": "./dist/esm/cli/index.js"
},
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsx scripts/build.ts",
"typecheck": "tsc -p tsconfig.check.json",
"pretest": "npm run build",
"test": "node --import tsx/esm --test --test-concurrency=1 $(find tests/unit tests/integration -name '*.test.ts' | tr '\\n' ' ')",
"test:unit": "node --import tsx/esm --test --test-concurrency=1 $(find tests/unit -name '*.test.ts' | tr '\\n' ' ')",
"test:integration": "node --import tsx/esm --test --test-concurrency=1 $(find tests/integration -name '*.test.ts' | tr '\\n' ' ')",
"test:watch": "node --import tsx/esm --test --watch $(find tests/unit tests/integration -name '*.test.ts' | tr '\\n' ' ')",
"test:coverage": "npm run build && c8 --exclude='dist/**' --report-dir=. --reporter=lcov --reporter=text node --import tsx/esm --test --test-concurrency=1 --test-reporter=spec $(find tests/unit tests/integration -name '*.test.ts' | tr '\\n' ' ')",
"battle": "tsx battle.test.ts",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"type-coverage": "type-coverage -p tsconfig.check.json",
"ts-prune": "ts-prune -p tsconfig.check.json",
"release": "tsx scripts/release.ts",
"release:minor": "tsx scripts/release.ts minor",
"release:major": "tsx scripts/release.ts major",
"precoverage": "npm run build",
"coverage": "c8 --exclude='dist/**' --report-dir=. --reporter=lcov --reporter=text node --import tsx/esm --test --test-concurrency=1 --test-reporter=spec $(find tests/unit tests/integration -name '*.test.ts' | tr '\\n' ' ')",
"precoverage:summary": "npm run build",
"coverage:summary": "c8 --exclude='dist/**' --report-dir=. --reporter=text-summary node --import tsx/esm --test --test-concurrency=1 $(find tests/unit tests/integration -name '*.test.ts' | tr '\\n' ' ')"
},
"keywords": [
"ffmpeg",
"ffprobe",
"video",
"audio",
"typescript",
"fluent",
"mediaforge",
"hls",
"streaming",
"waveform"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GlobalTechInfo/mediaforge.git"
},
"bugs": {
"url": "https://github.com/GlobalTechInfo/mediaforge/issues"
},
"homepage": "https://GlobalTechInfo.github.io/mediaforge",
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@types/node": "^25.6.0",
"c8": "^11.0.0",
"ts-prune": "^0.10.3",
"tsx": "^4.21.0",
"type-coverage": "^2.29.7",
"typedoc": "^0.28.18",
"typescript": "^5.5.0"
}
}