-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.71 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.71 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
{
"name": "ffmpeggy",
"version": "3.1.3",
"type": "module",
"description": "A minimal yet powerful wrapper around ffmpeg and ffprobe",
"keywords": [
"ffmpeg",
"ffprobe",
"wrapper",
"stream",
"transcode",
"encode",
"decode"
],
"author": "Marcus Ekwall <marcus.ekwall@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mekwall/ffmpeggy.git"
},
"main": "./cjs/index.js",
"module": "./es/index.mjs",
"types": "./cjs/index.d.ts",
"exports": {
".": {
"types": "./cjs/index.d.ts",
"require": "./cjs/index.js",
"import": "./es/index.mjs"
}
},
"files": [
"cjs",
"es",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"rebuild": "yarn build --clean",
"build": "tsukuru -c tsconfig.build.json",
"lint": "eslint .",
"test": "yarn build && vitest run",
"test:watch": "yarn build && vitest",
"test:debug": "yarn build && cross-env DEBUG=ffmpeggy vitest run",
"test:unit": "yarn build && vitest run --project=unit",
"test:events": "yarn build && vitest run --project=events",
"test:async": "yarn build && vitest run --project=async",
"test:coverage": "yarn build && vitest run --coverage",
"test:coverage:watch": "yarn build && vitest --coverage",
"semantic-release": "semantic-release",
"semantic-release:dry-run": "cross-env DRY_RUN=true semantic-release --dry-run --no-ci --debug"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@esm2cjs/execa": "^6.1.1-cjs.1",
"debug": "^4.3.2",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/debug": "^4.1.7",
"@types/ffmpeg-static": "^3.0.0",
"@types/ffprobe-static": "^2.0.0",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@vitest/coverage-v8": "^3.2.3",
"cross-env": "^7.0.3",
"dotenv-cli": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^4.1.4",
"ffmpeg-static": "^5.0.0",
"ffprobe-static": "^3.0.0",
"semantic-release": "^24.2.0",
"tsukuru": "^0.8.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"vitest": "^3.2.3"
},
"packageManager": "yarn@4.9.2"
}