-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "@fastpix/video-data-core",
"version": "1.0.7",
"author": "FastPix, Inc",
"license": "MIT",
"description": "FastPix Video Data SDK for real-time monitoring of HTML5 video players.",
"main": "dist/index.js",
"files": [
"dist/*"
],
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"keywords": [
"fastpix analytics",
"FastPix",
"video analytics",
"HTML5 video analytics",
"HLS analytics",
"DASH analytics",
"HLS player",
"DASH player",
"real-time video monitoring",
"video data SDK",
"streaming video metrics",
"media player analytics",
"video quality monitoring",
"QoE metrics"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"build:esm": "esbuild src/index.ts --bundle --outfile=dist/index.mjs --format=esm --minify",
"build:cjs": "esbuild src/index.ts --bundle --outfile=dist/index.cjs --format=cjs --minify",
"build:js": "esbuild src/index.ts --bundle --outfile=dist/index.js --format=iife --minify",
"build": "npm run format && npm run build:esm && npm run build:cjs && npm run build:js"
},
"devDependencies": {
"@types/node": "^22.9.0",
"esbuild": "^0.25.4",
"prettier": "^3.3.3",
"typescript": "^5.3.2"
}
}