-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.01 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
{
"name": "@project-sunbird/collection-editor-react",
"version": "1.0.0",
"private": false,
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"files": [
"dist"
],
"sideEffects": [
"*.css"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"copy-player-assets": "node scripts/copy-player-assets.mjs",
"predev": "npm run copy-player-assets",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@project-sunbird/sunbird-epub-player-web-component": "2.0.0",
"@project-sunbird/sunbird-pdf-player-web-component": "2.0.0",
"@project-sunbird/sunbird-quml-player-web-component-react": "^0.1.10",
"@project-sunbird/sunbird-video-player-web-component": "2.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.51.0",
"axios": "^1.7.2",
"lucide-react": "^0.400.0",
"react-arborist": "^3.4.0",
"react-hook-form": "^7.52.0",
"react-hot-toast": "^2.4.1",
"react-to-webcomponent": "^1.1.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"sass": "^1.77.6",
"typescript": "^5.5.3",
"vite": "^6.4.3",
"vite-plugin-dts": "^5.0.3",
"vitest": "^3.2.7"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"overrides": {
"@microsoft/api-extractor": {
"lodash": "^4.18.0",
"minimatch": "^3.1.3"
},
"@microsoft/tsdoc-config": {
"ajv": "^6.14.0"
}
}
}