-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "react-social-embeds",
"version": "1.0.11",
"description": "Unified React embeds for social media content",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --external react --external react-dom --external dashjs --external hls.js",
"dev": "tsup src/index.ts --dts --format esm,cjs --watch --external dashjs --external hls.js",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"release:check": "npm run lint && npm test && npm run build"
},
"peerDependencies": {
"dashjs": ">=4.0.0",
"hls.js": ">=1.0.0",
"react": ">=18",
"react-dom": ">=18"
},
"peerDependenciesMeta": {
"dashjs": {
"optional": true
},
"hls.js": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.2.2",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"dashjs": "^4.7.4",
"hls.js": "^1.5.0",
"tsup": "^8.2.0",
"typescript": "^5.5.3",
"jsdom": "^24.1.0",
"vitest": "^2.0.5"
}
}