-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@itmaster/sdk",
"version": "0.1.1",
"description": "Official client SDK for the IT Master AI content engine — pull SEO-optimized articles into any Next.js site with turnkey sitemap, RSS, llms.txt, JSON-LD, IndexNow, metadata and webhook helpers.",
"type": "module",
"license": "MIT",
"author": "IT Master",
"homepage": "https://github.com/codedpro/itmaster-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/codedpro/itmaster-sdk.git"
},
"bugs": {
"url": "https://github.com/codedpro/itmaster-sdk/issues"
},
"keywords": [
"itmaster",
"seo",
"ai-content",
"content-engine",
"headless-cms",
"nextjs",
"next",
"app-router",
"react-server-components",
"blog",
"sitemap",
"rss",
"llms-txt",
"json-ld",
"structured-data",
"rich-results",
"indexnow",
"metadata",
"content-api",
"pull-api",
"publishing",
"webhooks",
"seo-automation"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./next": {
"types": "./dist/next.d.ts",
"import": "./dist/next.js"
},
"./provider": {
"types": "./dist/provider.d.ts",
"import": "./dist/provider.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"prepack": "npm run build"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"next": ">=14"
},
"peerDependenciesMeta": {
"next": { "optional": true }
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/node": "^20.0.0"
}
}