runtrim 0.1.10 → 0.1.13
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 +13 -0
- package/dist-cli/runtrim.cjs +11447 -3
- package/dist-cli/runtrim.js +5174 -390
- package/package.json +15 -6
- package/dist-cli/package.json +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "runtrim",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "CLI guard layer that scopes AI coding runs before they waste tokens.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "RunTrim",
|
|
@@ -32,15 +32,20 @@
|
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
34
|
"dev": "next dev",
|
|
35
|
-
"build": "
|
|
35
|
+
"build": "npm run build:all",
|
|
36
36
|
"build:web": "next build",
|
|
37
|
-
"build:cli": "tsup --config tsup.config.ts && node scripts/
|
|
37
|
+
"build:cli": "tsup --config tsup.config.ts && node scripts/verify-cli-build.mjs",
|
|
38
38
|
"build:all": "npm run build:cli && npm run build:web",
|
|
39
|
+
"verify:cli": "node scripts/verify-cli.mjs",
|
|
40
|
+
"verify:package": "node scripts/verify-package.mjs",
|
|
39
41
|
"start": "next start",
|
|
40
42
|
"lint": "eslint",
|
|
41
43
|
"prepublishOnly": "npm run build:cli",
|
|
42
44
|
"runtrim": "tsx cli/runtrim.ts",
|
|
43
|
-
"runtrim:build": "npm run build:cli"
|
|
45
|
+
"runtrim:build": "npm run build:cli",
|
|
46
|
+
"remotion:preview": "remotion preview src/remotion/index.ts",
|
|
47
|
+
"remotion:render:landscape": "remotion render src/remotion/index.ts RunTrimDemoLandscape out/runtrim-demo-landscape.mp4",
|
|
48
|
+
"remotion:render:square": "remotion render src/remotion/index.ts RunTrimDemoSquare out/runtrim-demo-square.mp4"
|
|
44
49
|
},
|
|
45
50
|
"dependencies": {
|
|
46
51
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
@@ -55,6 +60,8 @@
|
|
|
55
60
|
"@radix-ui/react-switch": "^1.2.6",
|
|
56
61
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
57
62
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
63
|
+
"@remotion/cli": "^4.0.456",
|
|
64
|
+
"@remotion/player": "^4.0.456",
|
|
58
65
|
"@supabase/ssr": "^0.10.2",
|
|
59
66
|
"@supabase/supabase-js": "^2.57.4",
|
|
60
67
|
"chalk": "^5.6.2",
|
|
@@ -62,6 +69,7 @@
|
|
|
62
69
|
"clipboardy": "^5.3.1",
|
|
63
70
|
"clsx": "^2.1.1",
|
|
64
71
|
"commander": "^14.0.3",
|
|
72
|
+
"dodopayments": "^2.32.0",
|
|
65
73
|
"execa": "^9.6.1",
|
|
66
74
|
"fast-glob": "^3.3.3",
|
|
67
75
|
"framer-motion": "^12.38.0",
|
|
@@ -75,6 +83,7 @@
|
|
|
75
83
|
"radix-ui": "^1.4.3",
|
|
76
84
|
"react": "19.2.4",
|
|
77
85
|
"react-dom": "19.2.4",
|
|
86
|
+
"remotion": "^4.0.456",
|
|
78
87
|
"resend": "^6.12.2",
|
|
79
88
|
"shadcn": "^4.5.0",
|
|
80
89
|
"sonner": "^2.0.7",
|
|
@@ -86,8 +95,8 @@
|
|
|
86
95
|
"@tailwindcss/postcss": "^4",
|
|
87
96
|
"@types/node": "^20",
|
|
88
97
|
"@types/prompts": "^2.4.9",
|
|
89
|
-
"@types/react": "^19",
|
|
90
|
-
"@types/react-dom": "^19",
|
|
98
|
+
"@types/react": "^19.2.14",
|
|
99
|
+
"@types/react-dom": "^19.2.3",
|
|
91
100
|
"eslint": "^9",
|
|
92
101
|
"eslint-config-next": "16.2.4",
|
|
93
102
|
"tailwindcss": "^4",
|
package/dist-cli/package.json
DELETED