cursor-companion-ai 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,51 @@
1
+ {
2
+ "name": "cursor-companion-ai",
3
+ "version": "0.1.0",
4
+ "description": "AI cursor companion that reads any web page and guides users by pointing at exact elements. One-line embed via <script> tag, BYOK direct from browser.",
5
+ "keywords": [
6
+ "ai",
7
+ "cursor",
8
+ "companion",
9
+ "onboarding",
10
+ "guide",
11
+ "anthropic",
12
+ "claude",
13
+ "walkthrough",
14
+ "assistant"
15
+ ],
16
+ "license": "MIT",
17
+ "main": "dist/companion.js",
18
+ "unpkg": "dist/companion.js",
19
+ "jsdelivr": "dist/companion.js",
20
+ "files": [
21
+ "dist/companion.js",
22
+ "README.md",
23
+ "LICENSE"
24
+ ],
25
+ "scripts": {
26
+ "dev": "next dev",
27
+ "build": "next build",
28
+ "start": "next start",
29
+ "build:embed": "node scripts/build-embed.mjs",
30
+ "prepublishOnly": "npm run build:embed"
31
+ },
32
+ "dependencies": {
33
+ "@anthropic-ai/sdk": "^0.100.1",
34
+ "framer-motion": "^11.11.0",
35
+ "html2canvas": "^1.4.1",
36
+ "next": "14.2.15",
37
+ "openai": "^4.67.0",
38
+ "react": "^18.3.1",
39
+ "react-dom": "^18.3.1"
40
+ },
41
+ "devDependencies": {
42
+ "@types/node": "^20",
43
+ "@types/react": "^18",
44
+ "@types/react-dom": "^18",
45
+ "autoprefixer": "^10.4.20",
46
+ "esbuild": "^0.28.0",
47
+ "postcss": "^8.4.47",
48
+ "tailwindcss": "^3.4.14",
49
+ "typescript": "^5"
50
+ }
51
+ }