-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.44 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.44 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
{
"name": "mediaforge",
"version": "0.1.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",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json && chmod +x dist/esm/cli/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"test": "find tests/unit tests/integration -name '*.test.ts' | xargs node --import tsx/esm --test",
"test:unit": "find tests/unit -name '*.test.ts' | xargs node --import tsx/esm --test",
"test:integration": "find tests/integration -name '*.test.ts' | xargs node --import tsx/esm --test",
"test:watch": "find tests/unit tests/integration -name '*.test.ts' | xargs node --import tsx/esm --test --watch",
"test:coverage": "find tests/unit -name '*.test.ts' | xargs node --import tsx/esm --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info --test",
"smoke": "node --import tsx/esm smoke.test.ts",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"release": "node scripts/release.mjs",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major"
},
"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": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"tsx": "^4.0.0",
"typedoc": "^0.28.18",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0"
}
}