@llm-newsletter-kit/core 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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json ADDED
@@ -0,0 +1,111 @@
1
+ {
2
+ "name": "@llm-newsletter-kit/core",
3
+ "private": false,
4
+ "type": "module",
5
+ "version": "1.0.0",
6
+ "description": "An extensible framework to automate your entire newsletter workflow. Handles data collection, LLM-based content analysis, and email generation, letting you focus on your unique domain logic.",
7
+ "main": "dist/index.cjs",
8
+ "module": "dist/index.js",
9
+ "types": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js",
14
+ "require": "./dist/index.cjs",
15
+ "default": "./dist/index.js"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE",
22
+ "NOTICE"
23
+ ],
24
+ "sideEffects": false,
25
+ "scripts": {
26
+ "clean": "rimraf dist",
27
+ "build": "npm run clean && rollup -c",
28
+ "prepublishOnly": "npm run build",
29
+ "preversion": "npm run build",
30
+ "postversion": "git push --follow-tags",
31
+ "release": "npm publish --access public",
32
+ "release:patch": "npm version patch && npm publish --access public",
33
+ "release:minor": "npm version minor && npm publish --access public",
34
+ "release:major": "npm version major && npm publish --access public",
35
+ "test": "vitest run",
36
+ "test:watch": "vitest",
37
+ "test:ci": "TEST_MODE=ci vitest run --coverage",
38
+ "test:coverage": "vitest run --coverage",
39
+ "test:coverage:watch": "vitest --coverage",
40
+ "lint": "eslint ./src",
41
+ "lint:fix": "eslint --fix ./src",
42
+ "lint:ci": "eslint --quiet ./src",
43
+ "typecheck": "tsc --noEmit",
44
+ "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md,mdx}\""
45
+ },
46
+ "author": "kimhongyeon",
47
+ "license": "Apache-2.0",
48
+ "dependencies": {
49
+ "@langchain/core": "^1.1.0",
50
+ "ai": "^5.0.104",
51
+ "dompurify": "^3.3.0",
52
+ "es-toolkit": "^1.42.0",
53
+ "jsdom": "^27.2.0",
54
+ "juice": "^11.0.3",
55
+ "marked": "^17.0.1",
56
+ "zod": "^4.1.13"
57
+ },
58
+ "devDependencies": {
59
+ "@eslint/js": "^9.39.1",
60
+ "@trivago/prettier-plugin-sort-imports": "^6.0.0",
61
+ "@types/jsdom": "^27.0.0",
62
+ "@types/node": "^24.10.1",
63
+ "@vitest/coverage-v8": "^3.2.4",
64
+ "@vitest/expect": "^3.2.4",
65
+ "eslint": "^9.39.1",
66
+ "eslint-plugin-unused-imports": "^4.3.0",
67
+ "prettier": "^3.7.1",
68
+ "rimraf": "^6.1.2",
69
+ "rollup": "^4.53.3",
70
+ "rollup-plugin-dts": "^6.3.0",
71
+ "rollup-plugin-typescript2": "^0.36.0",
72
+ "typescript": "^5.9.3",
73
+ "typescript-eslint": "^8.48.0",
74
+ "vitest": "^3.2.4"
75
+ },
76
+ "repository": {
77
+ "type": "git",
78
+ "url": "https://github.com/kimhongyeon/llm-newsletter-kit-core"
79
+ },
80
+ "bugs": {
81
+ "url": "https://github.com/kimhongyeon/llm-newsletter-kit-core/issues"
82
+ },
83
+ "homepage": "https://github.com/kimhongyeon/llm-newsletter-kit-core",
84
+ "keywords": [
85
+ "llm",
86
+ "newsletter",
87
+ "ai",
88
+ "automation",
89
+ "framework",
90
+ "toolkit",
91
+ "large-language-model",
92
+ "gpt",
93
+ "email-automation",
94
+ "content-aggregation",
95
+ "content-generation",
96
+ "summarization",
97
+ "web-scraping",
98
+ "parsing",
99
+ "extensible",
100
+ "pluggable",
101
+ "workflow-automation",
102
+ "developer-tools",
103
+ "nodejs"
104
+ ],
105
+ "engines": {
106
+ "node": ">=22"
107
+ },
108
+ "publishConfig": {
109
+ "access": "public"
110
+ }
111
+ }