runtrim 0.1.0

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,96 @@
1
+ {
2
+ "name": "runtrim",
3
+ "version": "0.1.0",
4
+ "description": "CLI guard layer that scopes AI coding runs before they waste tokens.",
5
+ "license": "MIT",
6
+ "author": "RunTrim",
7
+ "homepage": "https://runtrim.dev",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/michelpronkk-oss/rtrim.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/michelpronkk-oss/rtrim/issues"
14
+ },
15
+ "keywords": [
16
+ "cli",
17
+ "ai-coding",
18
+ "codex",
19
+ "claude",
20
+ "cursor",
21
+ "developer-tools",
22
+ "prompt-guard"
23
+ ],
24
+ "bin": {
25
+ "runtrim": "dist-cli/runtrim.cjs"
26
+ },
27
+ "files": [
28
+ "dist-cli",
29
+ "README.md",
30
+ "LICENSE",
31
+ "package.json"
32
+ ],
33
+ "scripts": {
34
+ "dev": "next dev",
35
+ "build": "next build",
36
+ "build:web": "next build",
37
+ "build:cli": "tsup --config tsup.config.ts && node scripts/fix-cli-runtime.mjs",
38
+ "build:all": "npm run build:cli && npm run build:web",
39
+ "start": "next start",
40
+ "lint": "eslint",
41
+ "runtrim": "tsx cli/runtrim.ts",
42
+ "runtrim:build": "npm run build:cli"
43
+ },
44
+ "dependencies": {
45
+ "@radix-ui/react-accordion": "^1.2.12",
46
+ "@radix-ui/react-avatar": "^1.1.11",
47
+ "@radix-ui/react-dialog": "^1.1.15",
48
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
49
+ "@radix-ui/react-label": "^2.1.8",
50
+ "@radix-ui/react-progress": "^1.1.8",
51
+ "@radix-ui/react-select": "^2.2.6",
52
+ "@radix-ui/react-separator": "^1.1.8",
53
+ "@radix-ui/react-slot": "^1.2.4",
54
+ "@radix-ui/react-switch": "^1.2.6",
55
+ "@radix-ui/react-tabs": "^1.1.13",
56
+ "@radix-ui/react-tooltip": "^1.2.8",
57
+ "@supabase/supabase-js": "^2.57.4",
58
+ "chalk": "^5.6.2",
59
+ "class-variance-authority": "^0.7.1",
60
+ "clipboardy": "^5.3.1",
61
+ "clsx": "^2.1.1",
62
+ "commander": "^14.0.3",
63
+ "execa": "^9.6.1",
64
+ "fast-glob": "^3.3.3",
65
+ "framer-motion": "^12.38.0",
66
+ "lucide-react": "^1.11.0",
67
+ "motion": "^12.38.0",
68
+ "nanoid": "^5.1.9",
69
+ "next": "16.2.4",
70
+ "next-themes": "^0.4.6",
71
+ "ora": "^9.4.0",
72
+ "prompts": "^2.4.2",
73
+ "radix-ui": "^1.4.3",
74
+ "react": "19.2.4",
75
+ "react-dom": "19.2.4",
76
+ "resend": "^6.12.2",
77
+ "shadcn": "^4.5.0",
78
+ "sonner": "^2.0.7",
79
+ "tailwind-merge": "^3.5.0",
80
+ "tw-animate-css": "^1.4.0",
81
+ "zod": "^4.3.6"
82
+ },
83
+ "devDependencies": {
84
+ "@tailwindcss/postcss": "^4",
85
+ "@types/node": "^20",
86
+ "@types/prompts": "^2.4.9",
87
+ "@types/react": "^19",
88
+ "@types/react-dom": "^19",
89
+ "eslint": "^9",
90
+ "eslint-config-next": "16.2.4",
91
+ "tailwindcss": "^4",
92
+ "tsup": "^8.5.1",
93
+ "tsx": "^4.21.0",
94
+ "typescript": "^5"
95
+ }
96
+ }