workthin 1.0.0 → 1.0.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/LICENSE +21 -0
- package/README.md +11 -118
- package/README.npm.md +39 -0
- package/README.repo.md +146 -0
- package/dist/cli/index.js +118 -118
- package/package.json +43 -22
package/package.json
CHANGED
|
@@ -1,16 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "workthin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Knowledge vaccination for AI — turn every solved problem into a reusable vaccine",
|
|
4
5
|
"private": false,
|
|
5
6
|
"type": "module",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": "workthin",
|
|
9
|
+
"homepage": "https://workthin.app",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"mcp",
|
|
12
|
+
"knowledge",
|
|
13
|
+
"ai",
|
|
14
|
+
"cli",
|
|
15
|
+
"hooks",
|
|
16
|
+
"claude",
|
|
17
|
+
"cursor",
|
|
18
|
+
"copilot",
|
|
19
|
+
"codex",
|
|
20
|
+
"gemini"
|
|
21
|
+
],
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18"
|
|
24
|
+
},
|
|
6
25
|
"bin": {
|
|
7
26
|
"wt": "dist/cli/index.js"
|
|
8
27
|
},
|
|
9
28
|
"files": [
|
|
10
|
-
"dist/cli"
|
|
29
|
+
"dist/cli",
|
|
30
|
+
"README.npm.md",
|
|
31
|
+
"LICENSE"
|
|
11
32
|
],
|
|
33
|
+
"readme": "README.npm.md",
|
|
12
34
|
"scripts": {
|
|
13
|
-
"preinstall": "[
|
|
35
|
+
"preinstall": "[ ! -d .git ] || npx only-allow bun",
|
|
14
36
|
"ci": "bun install --frozen-lockfile",
|
|
15
37
|
"dev": "next dev --hostname 0.0.0.0 --port 3001",
|
|
16
38
|
"build": "next build",
|
|
@@ -50,36 +72,51 @@
|
|
|
50
72
|
"supabase:diff": "bunx supabase db diff",
|
|
51
73
|
"supabase:dump": "cp supabase/seed.sql supabase/seed.bk.sql && bunx supabase db dump --local --data-only > supabase/seed.sql"
|
|
52
74
|
},
|
|
53
|
-
"dependencies": {
|
|
75
|
+
"dependencies": {},
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@biomejs/biome": "2.4.4",
|
|
54
78
|
"@clack/prompts": "^1.1.0",
|
|
55
79
|
"@hono/valibot-validator": "^0.6.1",
|
|
56
80
|
"@hookform/resolvers": "^5.2.2",
|
|
57
81
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
82
|
+
"@playwright/test": "^1.58.2",
|
|
58
83
|
"@sentry/nextjs": "^10.45.0",
|
|
59
84
|
"@sentry/node": "^10.45.0",
|
|
60
85
|
"@stripe/stripe-js": "^8.8.0",
|
|
61
86
|
"@supabase/ssr": "^0.8.0",
|
|
62
87
|
"@supabase/supabase-js": "^2.98.0",
|
|
88
|
+
"@tailwindcss/postcss": "^4.2.1",
|
|
63
89
|
"@tanstack/react-query": "^5.90.21",
|
|
90
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
91
|
+
"@testing-library/react": "^16.3.2",
|
|
64
92
|
"@types/mdx": "^2.0.13",
|
|
93
|
+
"@types/node": "^25.3.2",
|
|
94
|
+
"@types/react": "^19.2.14",
|
|
95
|
+
"@types/react-dom": "^19.2.3",
|
|
65
96
|
"@upstash/ratelimit": "^2.0.8",
|
|
66
97
|
"@upstash/redis": "^1.36.3",
|
|
67
98
|
"@vercel/analytics": "^2.0.1",
|
|
68
99
|
"@vercel/speed-insights": "^2.0.0",
|
|
100
|
+
"@vitejs/plugin-react": "5",
|
|
101
|
+
"@vitest/coverage-v8": "4.0.18",
|
|
69
102
|
"cac": "^6.7.14",
|
|
70
103
|
"chalk": "^5.4.0",
|
|
71
104
|
"clsx": "^2.1.1",
|
|
105
|
+
"daisyui": "^5.5.19",
|
|
72
106
|
"fumadocs-core": "^16.6.17",
|
|
73
107
|
"fumadocs-mdx": "^14.2.10",
|
|
74
108
|
"fumadocs-ui": "^16.6.17",
|
|
75
109
|
"hono": "^4.12.8",
|
|
110
|
+
"husky": "^9.1.7",
|
|
76
111
|
"jose": "^6.2.1",
|
|
112
|
+
"jsdom": "^28.1.0",
|
|
77
113
|
"mermaid": "^11.13.0",
|
|
78
114
|
"motion": "^12.38.0",
|
|
79
115
|
"next": "16.1.6",
|
|
80
116
|
"nuqs": "^2.8.9",
|
|
81
117
|
"openai": "^6.25.0",
|
|
82
118
|
"ora": "^8.2.0",
|
|
119
|
+
"playwright": "^1.58.2",
|
|
83
120
|
"posthog-js": "^1.356.1",
|
|
84
121
|
"posthog-node": "^5.26.0",
|
|
85
122
|
"react": "^19.2.4",
|
|
@@ -88,27 +125,11 @@
|
|
|
88
125
|
"resend": "^6.9.4",
|
|
89
126
|
"simple-icons": "^16.11.0",
|
|
90
127
|
"stripe": "^20.4.0",
|
|
91
|
-
"tailwind-merge": "^3.5.0",
|
|
92
|
-
"valibot": "^1.2.0"
|
|
93
|
-
},
|
|
94
|
-
"devDependencies": {
|
|
95
|
-
"@biomejs/biome": "2.4.4",
|
|
96
|
-
"@playwright/test": "^1.58.2",
|
|
97
|
-
"playwright": "^1.58.2",
|
|
98
|
-
"@tailwindcss/postcss": "^4.2.1",
|
|
99
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
100
|
-
"@testing-library/react": "^16.3.2",
|
|
101
|
-
"@types/node": "^25.3.2",
|
|
102
|
-
"@types/react": "^19.2.14",
|
|
103
|
-
"@types/react-dom": "^19.2.3",
|
|
104
|
-
"@vitejs/plugin-react": "5",
|
|
105
|
-
"@vitest/coverage-v8": "4.0.18",
|
|
106
|
-
"daisyui": "^5.5.19",
|
|
107
|
-
"husky": "^9.1.7",
|
|
108
|
-
"jsdom": "^28.1.0",
|
|
109
128
|
"supabase": "^2.76.15",
|
|
129
|
+
"tailwind-merge": "^3.5.0",
|
|
110
130
|
"tailwindcss": "^4.2.1",
|
|
111
131
|
"typescript": "^5.9.3",
|
|
132
|
+
"valibot": "^1.2.0",
|
|
112
133
|
"vite-tsconfig-paths": "^6.1.1",
|
|
113
134
|
"vitest": "^4.0.18"
|
|
114
135
|
},
|