@salina-app/media-editor 0.2.18 → 0.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -15
- package/dist/index.js +2788 -2795
- package/package.json +96 -96
package/package.json
CHANGED
|
@@ -1,96 +1,96 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@salina-app/media-editor",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/main.d.ts",
|
|
7
|
-
"style": "dist/index.css",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"publishConfig": {
|
|
12
|
-
"access": "public"
|
|
13
|
-
},
|
|
14
|
-
"license": "MIT",
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "storybook dev -p 6006",
|
|
17
|
-
"build": "tsc -b && vite build",
|
|
18
|
-
"lint": "eslint .",
|
|
19
|
-
"preview": "vite preview",
|
|
20
|
-
"storybook": "storybook dev -p 6006",
|
|
21
|
-
"build-storybook": "storybook build"
|
|
22
|
-
},
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"@iconify/react": "^5.2.0",
|
|
25
|
-
"@radix-ui/react-alert-dialog": "^1.1.4",
|
|
26
|
-
"@radix-ui/react-context-menu": "^2.2.7",
|
|
27
|
-
"@radix-ui/react-dialog": "^1.1.4",
|
|
28
|
-
"@radix-ui/react-icons": "^1.3.2",
|
|
29
|
-
"@radix-ui/react-select": "^2.1.5",
|
|
30
|
-
"@radix-ui/react-slot": "^1.1.1",
|
|
31
|
-
"@radix-ui/react-switch": "^1.1.2",
|
|
32
|
-
"@radix-ui/react-toast": "^1.2.4",
|
|
33
|
-
"@radix-ui/react-tooltip": "^1.1.6",
|
|
34
|
-
"axios": "^1.7.9",
|
|
35
|
-
"bson-objectid": "^2.0.4",
|
|
36
|
-
"class-variance-authority": "^0.7.1",
|
|
37
|
-
"clsx": "^2.1.1",
|
|
38
|
-
"date-fns": "^4.1.0",
|
|
39
|
-
"framer-motion": "^11.15.0",
|
|
40
|
-
"jwt-encode": "^1.0.1",
|
|
41
|
-
"lucide-react": "^0.469.0",
|
|
42
|
-
"react": "^18.3.1",
|
|
43
|
-
"react-contenteditable": "^3.3.7",
|
|
44
|
-
"react-dom": "^18.3.1",
|
|
45
|
-
"react-icons": "^5.4.0",
|
|
46
|
-
"react-resizable-panels": "^2.1.7",
|
|
47
|
-
"react-scan": "^0.3.3",
|
|
48
|
-
"sonner": "^1.7.1",
|
|
49
|
-
"tailwind-merge": "^2.6.0",
|
|
50
|
-
"tailwindcss-animate": "^1.0.7",
|
|
51
|
-
"video.js": "^8.21.0",
|
|
52
|
-
"videojs-youtube": "^3.0.1",
|
|
53
|
-
"wavesurfer.js": "^7.8.15",
|
|
54
|
-
"zod": "^3.24.1",
|
|
55
|
-
"zustand": "^5.0.2"
|
|
56
|
-
},
|
|
57
|
-
"devDependencies": {
|
|
58
|
-
"@chromatic-com/storybook": "3.2.3",
|
|
59
|
-
"@eslint/js": "^9.17.0",
|
|
60
|
-
"@storybook/addon-essentials": "8.4.7",
|
|
61
|
-
"@storybook/addon-interactions": "8.4.7",
|
|
62
|
-
"@storybook/addon-onboarding": "8.4.7",
|
|
63
|
-
"@storybook/blocks": "8.4.7",
|
|
64
|
-
"@storybook/react": "8.4.7",
|
|
65
|
-
"@storybook/react-vite": "8.4.7",
|
|
66
|
-
"@storybook/test": "8.4.7",
|
|
67
|
-
"@types/jwt-encode": "^1.0.3",
|
|
68
|
-
"@types/node": "^22.10.5",
|
|
69
|
-
"@types/react": "^18.3.18",
|
|
70
|
-
"@types/react-dom": "^18.3.5",
|
|
71
|
-
"@types/react-virtualized": "^9.22.0",
|
|
72
|
-
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
73
|
-
"autoprefixer": "^10.4.20",
|
|
74
|
-
"eslint": "^9.17.0",
|
|
75
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
76
|
-
"eslint-plugin-react-refresh": "^0.4.16",
|
|
77
|
-
"eslint-plugin-storybook": "^0.11.2",
|
|
78
|
-
"globals": "^15.14.0",
|
|
79
|
-
"postcss": "^8.4.49",
|
|
80
|
-
"storybook": "8.4.7",
|
|
81
|
-
"tailwindcss": "^3.4.17",
|
|
82
|
-
"typescript": "~5.6.2",
|
|
83
|
-
"typescript-eslint": "^8.18.2",
|
|
84
|
-
"vite": "^6.0.5",
|
|
85
|
-
"vite-plugin-dts": "^4.4.0"
|
|
86
|
-
},
|
|
87
|
-
"peerDependencies": {
|
|
88
|
-
"react": ">=18.0.0",
|
|
89
|
-
"react-dom": ">=18.0.0"
|
|
90
|
-
},
|
|
91
|
-
"eslintConfig": {
|
|
92
|
-
"extends": [
|
|
93
|
-
"plugin:storybook/recommended"
|
|
94
|
-
]
|
|
95
|
-
}
|
|
96
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@salina-app/media-editor",
|
|
3
|
+
"version": "0.2.19",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/main.d.ts",
|
|
7
|
+
"style": "dist/index.css",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "storybook dev -p 6006",
|
|
17
|
+
"build": "tsc -b && vite build",
|
|
18
|
+
"lint": "eslint .",
|
|
19
|
+
"preview": "vite preview",
|
|
20
|
+
"storybook": "storybook dev -p 6006",
|
|
21
|
+
"build-storybook": "storybook build"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@iconify/react": "^5.2.0",
|
|
25
|
+
"@radix-ui/react-alert-dialog": "^1.1.4",
|
|
26
|
+
"@radix-ui/react-context-menu": "^2.2.7",
|
|
27
|
+
"@radix-ui/react-dialog": "^1.1.4",
|
|
28
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
29
|
+
"@radix-ui/react-select": "^2.1.5",
|
|
30
|
+
"@radix-ui/react-slot": "^1.1.1",
|
|
31
|
+
"@radix-ui/react-switch": "^1.1.2",
|
|
32
|
+
"@radix-ui/react-toast": "^1.2.4",
|
|
33
|
+
"@radix-ui/react-tooltip": "^1.1.6",
|
|
34
|
+
"axios": "^1.7.9",
|
|
35
|
+
"bson-objectid": "^2.0.4",
|
|
36
|
+
"class-variance-authority": "^0.7.1",
|
|
37
|
+
"clsx": "^2.1.1",
|
|
38
|
+
"date-fns": "^4.1.0",
|
|
39
|
+
"framer-motion": "^11.15.0",
|
|
40
|
+
"jwt-encode": "^1.0.1",
|
|
41
|
+
"lucide-react": "^0.469.0",
|
|
42
|
+
"react": "^18.3.1",
|
|
43
|
+
"react-contenteditable": "^3.3.7",
|
|
44
|
+
"react-dom": "^18.3.1",
|
|
45
|
+
"react-icons": "^5.4.0",
|
|
46
|
+
"react-resizable-panels": "^2.1.7",
|
|
47
|
+
"react-scan": "^0.3.3",
|
|
48
|
+
"sonner": "^1.7.1",
|
|
49
|
+
"tailwind-merge": "^2.6.0",
|
|
50
|
+
"tailwindcss-animate": "^1.0.7",
|
|
51
|
+
"video.js": "^8.21.0",
|
|
52
|
+
"videojs-youtube": "^3.0.1",
|
|
53
|
+
"wavesurfer.js": "^7.8.15",
|
|
54
|
+
"zod": "^3.24.1",
|
|
55
|
+
"zustand": "^5.0.2"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@chromatic-com/storybook": "3.2.3",
|
|
59
|
+
"@eslint/js": "^9.17.0",
|
|
60
|
+
"@storybook/addon-essentials": "8.4.7",
|
|
61
|
+
"@storybook/addon-interactions": "8.4.7",
|
|
62
|
+
"@storybook/addon-onboarding": "8.4.7",
|
|
63
|
+
"@storybook/blocks": "8.4.7",
|
|
64
|
+
"@storybook/react": "8.4.7",
|
|
65
|
+
"@storybook/react-vite": "8.4.7",
|
|
66
|
+
"@storybook/test": "8.4.7",
|
|
67
|
+
"@types/jwt-encode": "^1.0.3",
|
|
68
|
+
"@types/node": "^22.10.5",
|
|
69
|
+
"@types/react": "^18.3.18",
|
|
70
|
+
"@types/react-dom": "^18.3.5",
|
|
71
|
+
"@types/react-virtualized": "^9.22.0",
|
|
72
|
+
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
73
|
+
"autoprefixer": "^10.4.20",
|
|
74
|
+
"eslint": "^9.17.0",
|
|
75
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
76
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
77
|
+
"eslint-plugin-storybook": "^0.11.2",
|
|
78
|
+
"globals": "^15.14.0",
|
|
79
|
+
"postcss": "^8.4.49",
|
|
80
|
+
"storybook": "8.4.7",
|
|
81
|
+
"tailwindcss": "^3.4.17",
|
|
82
|
+
"typescript": "~5.6.2",
|
|
83
|
+
"typescript-eslint": "^8.18.2",
|
|
84
|
+
"vite": "^6.0.5",
|
|
85
|
+
"vite-plugin-dts": "^4.4.0"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"react": ">=18.0.0",
|
|
89
|
+
"react-dom": ">=18.0.0"
|
|
90
|
+
},
|
|
91
|
+
"eslintConfig": {
|
|
92
|
+
"extends": [
|
|
93
|
+
"plugin:storybook/recommended"
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
}
|