@seoengine.ai/next-llm-ready 1.0.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,118 @@
1
+ {
2
+ "name": "@seoengine.ai/next-llm-ready",
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "version": "1.0.0",
7
+ "description": "Make your Next.js content AI-ready with copy-to-LLM buttons, markdown conversion, Table of Contents, and LLM-friendly endpoints",
8
+ "author": "SEO Engine <hello@seoengine.ai>",
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/SEOengineai/next-llm-ready"
13
+ },
14
+ "homepage": "https://github.com/SEOengineai/next-llm-ready",
15
+ "bugs": {
16
+ "url": "https://github.com/SEOengineai/next-llm-ready/issues"
17
+ },
18
+ "keywords": [
19
+ "nextjs",
20
+ "next",
21
+ "react",
22
+ "llm",
23
+ "ai",
24
+ "markdown",
25
+ "copy",
26
+ "clipboard",
27
+ "table-of-contents",
28
+ "toc",
29
+ "seo",
30
+ "content",
31
+ "chatgpt",
32
+ "claude",
33
+ "gemini",
34
+ "ai-ready"
35
+ ],
36
+ "type": "module",
37
+ "main": "./dist/index.js",
38
+ "module": "./dist/index.mjs",
39
+ "types": "./dist/index.d.ts",
40
+ "exports": {
41
+ ".": {
42
+ "import": {
43
+ "types": "./dist/index.d.ts",
44
+ "default": "./dist/index.mjs"
45
+ },
46
+ "require": {
47
+ "types": "./dist/index.d.ts",
48
+ "default": "./dist/index.js"
49
+ }
50
+ },
51
+ "./hooks": {
52
+ "import": {
53
+ "types": "./dist/hooks/index.d.ts",
54
+ "default": "./dist/hooks/index.mjs"
55
+ },
56
+ "require": {
57
+ "types": "./dist/hooks/index.d.ts",
58
+ "default": "./dist/hooks/index.js"
59
+ }
60
+ },
61
+ "./server": {
62
+ "import": {
63
+ "types": "./dist/server/index.d.ts",
64
+ "default": "./dist/server/index.mjs"
65
+ },
66
+ "require": {
67
+ "types": "./dist/server/index.d.ts",
68
+ "default": "./dist/server/index.js"
69
+ }
70
+ },
71
+ "./api": {
72
+ "import": {
73
+ "types": "./dist/api/index.d.ts",
74
+ "default": "./dist/api/index.mjs"
75
+ },
76
+ "require": {
77
+ "types": "./dist/api/index.d.ts",
78
+ "default": "./dist/api/index.js"
79
+ }
80
+ },
81
+ "./styles.css": "./dist/styles.css"
82
+ },
83
+ "files": [
84
+ "dist",
85
+ "README.md",
86
+ "LICENSE"
87
+ ],
88
+ "scripts": {
89
+ "build": "tsup",
90
+ "dev": "tsup --watch",
91
+ "lint": "eslint src --ext .ts,.tsx",
92
+ "type-check": "tsc --noEmit",
93
+ "clean": "rm -rf dist",
94
+ "prepublishOnly": "npm run build"
95
+ },
96
+ "peerDependencies": {
97
+ "next": ">=13.0.0",
98
+ "react": ">=18.0.0",
99
+ "react-dom": ">=18.0.0"
100
+ },
101
+ "devDependencies": {
102
+ "@types/node": "^20.10.0",
103
+ "@types/react": "^18.2.0",
104
+ "@types/react-dom": "^18.2.0",
105
+ "eslint": "^8.55.0",
106
+ "next": "^14.0.0",
107
+ "react": "^18.2.0",
108
+ "react-dom": "^18.2.0",
109
+ "tsup": "^8.0.0",
110
+ "typescript": "^5.3.0"
111
+ },
112
+ "engines": {
113
+ "node": ">=18.0.0"
114
+ },
115
+ "sideEffects": [
116
+ "*.css"
117
+ ]
118
+ }