cryptis-video-editor 0.1.0 → 0.1.2
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/package.json +135 -135
package/package.json
CHANGED
|
@@ -1,137 +1,137 @@
|
|
|
1
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
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
2
|
+
"name": "cryptis-video-editor",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "A video editor component library for React",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "next dev",
|
|
14
|
+
"build": "next build",
|
|
15
|
+
"prepublishOnly": "npm run build",
|
|
16
|
+
"start": "next start",
|
|
17
|
+
"lint": "next lint",
|
|
18
|
+
"migrate:up": "tsx scripts/migrate.ts up",
|
|
19
|
+
"migrate:down": "tsx scripts/migrate.ts down",
|
|
20
|
+
"cleanup-db": "tsx scripts/cleanup-db.ts",
|
|
21
|
+
"format": "biome format . --write"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"react",
|
|
25
|
+
"video-editor",
|
|
26
|
+
"components"
|
|
27
|
+
],
|
|
28
|
+
"author": "Your Name",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"peerDependencies": {
|
|
31
|
+
"react": "^18.0.0",
|
|
32
|
+
"react-dom": "^18.0.0"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@designcombo/animations": "^5.4.2",
|
|
36
|
+
"@designcombo/events": "^1.0.2",
|
|
37
|
+
"@designcombo/frames": "^0.0.3",
|
|
38
|
+
"@designcombo/state": "^5.4.2",
|
|
39
|
+
"@designcombo/timeline": "^5.4.2",
|
|
40
|
+
"@designcombo/transitions": "^5.4.2",
|
|
41
|
+
"@emotion/react": "^11.14.0",
|
|
42
|
+
"@emotion/styled": "^11.14.0",
|
|
43
|
+
"@google/genai": "^1.6.0",
|
|
44
|
+
"@hookform/resolvers": "^3.9.0",
|
|
45
|
+
"@interactify/toolkit": "^1.0.0",
|
|
46
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
47
|
+
"@radix-ui/react-avatar": "^1.1.9",
|
|
48
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
49
|
+
"@radix-ui/react-collapsible": "^1.1.10",
|
|
50
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
51
|
+
"@radix-ui/react-dropdown-menu": "^2.1.14",
|
|
52
|
+
"@radix-ui/react-label": "^2.1.6",
|
|
53
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
54
|
+
"@radix-ui/react-progress": "^1.1.0",
|
|
55
|
+
"@radix-ui/react-scroll-area": "^1.2.8",
|
|
56
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
57
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
58
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
59
|
+
"@radix-ui/react-slot": "^1.2.2",
|
|
60
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
61
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
62
|
+
"@radix-ui/react-toast": "^1.2.2",
|
|
63
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
64
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
65
|
+
"@radix-ui/react-tooltip": "^1.2.6",
|
|
66
|
+
"@remotion/cli": "4.0.406",
|
|
67
|
+
"@remotion/media-utils": "4.0.406",
|
|
68
|
+
"@remotion/paths": "4.0.406",
|
|
69
|
+
"@remotion/player": "4.0.406",
|
|
70
|
+
"@remotion/renderer": "4.0.406",
|
|
71
|
+
"@remotion/shapes": "4.0.406",
|
|
72
|
+
"@remotion/three": "4.0.406",
|
|
73
|
+
"@remotion/transitions": "4.0.406",
|
|
74
|
+
"@stripe/stripe-js": "^4.10.0",
|
|
75
|
+
"@tanstack/react-query": "^5.81.5",
|
|
76
|
+
"@tanstack/react-query-devtools": "^5.81.5",
|
|
77
|
+
"@types/node": "^20",
|
|
78
|
+
"@types/pg": "^8.15.4",
|
|
79
|
+
"@types/react": "^19",
|
|
80
|
+
"@types/react-dom": "^19",
|
|
81
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
82
|
+
"@vercel/analytics": "^1.4.0",
|
|
83
|
+
"axios": "^1.10.0",
|
|
84
|
+
"class-variance-authority": "^0.7.1",
|
|
85
|
+
"clsx": "^2.1.1",
|
|
86
|
+
"cmdk": "^0.2.1",
|
|
87
|
+
"dotenv": "^17.0.0",
|
|
88
|
+
"form-data": "^4.0.3",
|
|
89
|
+
"framer-motion": "11",
|
|
90
|
+
"kysely": "^0.28.2",
|
|
91
|
+
"lodash": "^4.17.21",
|
|
92
|
+
"lucide-react": "^0.511.0",
|
|
93
|
+
"motion": "^12.12.1",
|
|
94
|
+
"nanoid": "^5.1.5",
|
|
95
|
+
"next": "15.3.2",
|
|
96
|
+
"next-themes": "^0.4.6",
|
|
97
|
+
"pg": "^8.16.3",
|
|
98
|
+
"react": "^18.0.0",
|
|
99
|
+
"react-dom": "^18.0.0",
|
|
100
|
+
"react-draggable": "^4.4.6",
|
|
101
|
+
"react-dropzone": "^14.3.8",
|
|
102
|
+
"react-markdown": "10",
|
|
103
|
+
"react-resizable-panels": "^3.0.2",
|
|
104
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
105
|
+
"remark-gfm": "4",
|
|
106
|
+
"remeda": "2",
|
|
107
|
+
"remotion": "^4.0.406",
|
|
108
|
+
"shiki": "1",
|
|
109
|
+
"socket.io-client": "^4.8.1",
|
|
110
|
+
"sonner": "^2.0.3",
|
|
111
|
+
"swr": "^2.3.3",
|
|
112
|
+
"tailwind-merge": "^3.3.0",
|
|
113
|
+
"tinycolor2": "^1.6.0",
|
|
114
|
+
"vaul": "^1.1.2",
|
|
115
|
+
"zod": "^3.25.3",
|
|
116
|
+
"zustand": "^5.0.4"
|
|
117
|
+
},
|
|
118
|
+
"devDependencies": {
|
|
119
|
+
"@biomejs/biome": "1.9.4",
|
|
120
|
+
"@designcombo/types": "^5.4.2",
|
|
121
|
+
"@rollup/plugin-commonjs": "^25.0.8",
|
|
122
|
+
"@rollup/plugin-node-resolve": "^15.3.1",
|
|
123
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
124
|
+
"@tailwindcss/postcss": "^4",
|
|
125
|
+
"@types/lodash": "^4.17.17",
|
|
126
|
+
"@types/tinycolor2": "^1.4.6",
|
|
127
|
+
"rollup": "^3.29.5",
|
|
128
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
129
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
130
|
+
"tailwindcss": "^4",
|
|
131
|
+
"tslib": "^2.8.1",
|
|
132
|
+
"tsx": "^4.20.3",
|
|
133
|
+
"tw-animate-css": "^1.3.0",
|
|
134
|
+
"typescript": "^5"
|
|
135
|
+
},
|
|
136
|
+
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
|
|
137
137
|
}
|