-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.49 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
{
"name": "react-use-ffmpeg",
"version": "2.0.2",
"description": "A react hook to use ffmpeg in the browser using ffmpeg.wasm",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"deploy": "gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dk013/react-use-ffmpeg.git"
},
"keywords": [
"react",
"ffmpeg",
"ffmpegjs",
"useffmpeg",
"ffmpeg.wasm",
"react-hooks",
"typescript"
],
"author": "Deep Chakraborty <chakraborty.deep013@gmail.com> (https://github.com/dk013)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dk013/react-use-ffmpeg/issues"
},
"homepage": "https://dk013.github.io/react-use-ffmpeg",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"gh-pages": "^6.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.2.6",
"typescript": "^5.7.3"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2"
},
"sideEffects": false
}