-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.48 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.48 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
{
"name": "@interactive-video-labs/react",
"version": "0.2.0",
"description": "Thin React wrapper for the @interactive-video-labs/core engine. Enables cue-based interactive video playback in React apps.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --cache"
]
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"clean": "rm -rf dist",
"prepare": "husky",
"lint": "lint-staged",
"commitlint": "commitlint --edit",
"serve-examples": "pnpm build-examples && http-server examples -c-1",
"build-examples": "esbuild examples/index.tsx --bundle --outfile=examples/dist/index.js --jsx=automatic"
},
"keywords": [
"interactive-video",
"react",
"react-component",
"typescript",
"video-player",
"cue-points",
"interactive-learning",
"react-wrapper"
],
"author": "Taj",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/interactive-video-labs/interactive-video-react-wrapper.git"
},
"homepage": "https://github.com/interactive-video-labs/interactive-video-react-wrapper#readme",
"bugs": {
"url": "https://github.com/interactive-video-labs/interactive-video-react-wrapper/issues"
},
"packageManager": "pnpm@10.28.1",
"peerDependencies": {
"@interactive-video-labs/core": "^0.1.2 || ^0.2.0",
"react": ">=17.0.0 || >=18.0.0",
"react-dom": ">=17.0.0 || >=18.0.0"
},
"dependencies": {
"@vitejs/plugin-react": "^5.0.0",
"jsdom": "^27.0.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"typescript-eslint": "^8.39.0"
}
}