-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.83 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
{
"name": "@boxcast/react-video-analytics",
"version": "0.1.3",
"description": "Easily generate and post video player metrics",
"repository": {
"type": "git",
"url": "git+https://github.com/boxcast/react-video-analytics.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx,json}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
"format": "prettier-eslint --write \"$(pwd)/**/*.{js,jsx,ts,tsx}\"",
"tsc": "tsc"
},
"keywords": [
"video",
"analytics",
"metrics",
"react"
],
"author": "BoxCast <support@boxcast.com> (https://www.boxcast.com)",
"license": "MIT",
"dependencies": {
"@vime/core": "^5.4.1",
"@vime/react": "^5.4.1",
"platform": "^1.3.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/platform": "^1.3.5",
"@types/react": "^18.2.31",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"prettier-eslint-cli": "^8.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"directories": {
"test": "tests"
},
"bugs": {
"url": "https://github.com/boxcast/react-video-analytics/issues"
},
"homepage": "https://github.com/boxcast/react-video-analytics#readme"
}