-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.49 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "parevo-interactive-video",
"version": "1.0.0",
"description": "Framework-agnostic interactive video library with quiz overlays for React, Vue, and vanilla JS",
"type": "module",
"main": "dist/core/index.js",
"types": "dist/core/index.d.ts",
"module": "dist/core/index.js",
"exports": {
".": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
},
"./vue": {
"import": "./dist/vue/index.js",
"types": "./dist/vue/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"dev-server": "vite examples --port 3000",
"preview": "vite preview examples"
},
"keywords": [
"interactive-video",
"quiz",
"learning",
"education",
"video",
"react",
"vue",
"vanilla-js",
"framework-agnostic",
"typescript"
],
"author": {
"name": "Parevo",
"email": "info@parevo.com",
"url": "https://parevo.co"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/parevo-lab/interactive-video.git"
},
"homepage": "https://github.com/parevo-lab/interactive-video#readme",
"bugs": {
"url": "https://github.com/parevo-lab/interactive-video/issues"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"vue": {
"optional": true
}
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vue": "^3.4.0",
"rollup": "^4.7.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.0",
"@vitejs/plugin-react": "^4.2.0"
}
}