scrolltube 2.0.15

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 ADDED
@@ -0,0 +1,99 @@
1
+ {
2
+ "name": "scrolltube",
3
+ "version": "2.0.15",
4
+ "description": "ScrollTube is a web-based tool for scroll-triggered animations.",
5
+ "main": "dist/core/scrolltube.umd.min.js",
6
+ "module": "dist/core/scrolltube.umd.min.js",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/core/index.d.ts",
10
+ "import": "./dist/core/scrolltube.umd.min.js",
11
+ "require": "./dist/core/scrolltube.umd.min.js"
12
+ },
13
+ "./react": {
14
+ "types": "./dist/react/index.d.ts",
15
+ "import": "./dist/react/index.js",
16
+ "require": "./dist/react/index.js"
17
+ },
18
+ "./pipeline": {
19
+ "types": "./dist/pipeline/index.d.ts",
20
+ "import": "./dist/pipeline/index.js",
21
+ "require": "./dist/pipeline/index.js"
22
+ }
23
+ },
24
+ "types": "dist/core/index.d.ts",
25
+ "bin": {
26
+ "stube": "dist/cli/index.js"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md",
31
+ "AGENTS.md",
32
+ "CLAUDE.md",
33
+ "docs"
34
+ ],
35
+ "scripts": {
36
+ "build": "npm run sync-readme && npm run build:web && npm run build:pipeline",
37
+ "sync-readme": "node -e \"fs.copyFileSync('../../README.md', './README.md')\"",
38
+ "build:web": "webpack --config webpack.config.js --mode production && npm run build:types:web",
39
+ "build:types:web": "tsc --project tsconfig.json --emitDeclarationOnly",
40
+ "build:pipeline": "tsc --project tsconfig.node.json && node scripts/make-executable.cjs",
41
+ "prepublishOnly": "npm run build",
42
+ "dev": "concurrently -n WEB,NODE,TYPES -c \"blue,yellow,green\" \"npm:dev:web\" \"npm:dev:node\" \"npm:dev:types\"",
43
+ "dev:web": "webpack --config webpack.config.js --mode development --watch",
44
+ "dev:node": "tsc --project tsconfig.node.json --watch --preserveWatchOutput",
45
+ "dev:types": "tsc --project tsconfig.json --watch --emitDeclarationOnly"
46
+ },
47
+ "peerDependencies": {
48
+ "react": ">=16.8.0",
49
+ "react-dom": ">=16.8.0"
50
+ },
51
+ "dependencies": {
52
+ "@fal-ai/client": "^1.9.4",
53
+ "@ffmpeg/ffmpeg": "^0.12.15",
54
+ "@ffmpeg/util": "^0.12.2",
55
+ "chalk": "^4.1.2",
56
+ "commander": "^11.1.0",
57
+ "dotenv": "^17.3.1",
58
+ "ffmpeg-static": "^5.3.0",
59
+ "fs-extra": "^11.3.4",
60
+ "jszip": "^3.10.1",
61
+ "motion": "^12.36.0",
62
+ "sharp": "^0.34.5"
63
+ },
64
+ "repository": {
65
+ "type": "git",
66
+ "url": "git+https://github.com/aleskozelsky/scrolltube.git"
67
+ },
68
+ "keywords": [
69
+ "scroll",
70
+ "animation",
71
+ "video",
72
+ "image",
73
+ "sequence"
74
+ ],
75
+ "author": "Ales Kozelsky",
76
+ "license": "ISC",
77
+ "bugs": {
78
+ "url": "https://github.com/aleskozelsky/scrolltube/issues"
79
+ },
80
+ "homepage": "https://github.com/aleskozelsky/scrolltube#readme",
81
+ "devDependencies": {
82
+ "@types/fluent-ffmpeg": "^2.1.28",
83
+ "@types/node": "^20.0.0",
84
+ "@types/react": "^18.0.0",
85
+ "@types/react-dom": "^18.0.0",
86
+ "chalk": "^4.1.2",
87
+ "clean-webpack-plugin": "^4.0.0",
88
+ "concurrently": "^8.2.0",
89
+ "css-loader": "^6.8.0",
90
+ "style-loader": "^3.3.0",
91
+ "terser-webpack-plugin": "^5.3.10",
92
+ "ts-loader": "^9.5.0",
93
+ "typescript": "^5.3.0",
94
+ "webpack": "^5.90.0",
95
+ "webpack-cli": "^5.1.0",
96
+ "@types/fs-extra": "^11.0.4",
97
+ "@types/sharp": "^0.31.1"
98
+ }
99
+ }