Skip to content

Commit 9d62714

Browse files
committed
update packagejson
1 parent ea496d5 commit 9d62714

File tree

3 files changed

+63
-9
lines changed

3 files changed

+63
-9
lines changed

package.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,24 @@
1313
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
1414
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\""
1515
},
16-
"keywords": [],
16+
"keywords": [
17+
"stripe",
18+
"documentation",
19+
"loader",
20+
"langchain",
21+
"sitemap"
22+
],
1723
"author": "hideokamoto",
18-
"license": "ISC",
19-
"description": "",
24+
"license": "MIT",
25+
"description": "A collection of utility libraries for easily retrieving and processing Stripe data",
26+
"repository": {
27+
"type": "git",
28+
"url": "https://github.com/wpkyoto/stripe-docs-loader"
29+
},
30+
"bugs": {
31+
"url": "https://github.com/wpkyoto/stripe-docs-loader/issues"
32+
},
33+
"homepage": "https://github.com/wpkyoto/stripe-docs-loader#readme",
2034
"devDependencies": {
2135
"@types/node": "^22.13.10",
2236
"prettier": "^3.2.5",

packages/core/package.json

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,29 @@
1818
"scripts": {
1919
"dev": "vite build --watch",
2020
"build": "vite build && tsc --emitDeclarationOnly",
21-
"test": "vitest run"
21+
"test": "vitest run",
22+
"prepublishOnly": "npm run build"
2223
},
23-
"keywords": [],
24+
"keywords": [
25+
"stripe",
26+
"documentation",
27+
"sitemap",
28+
"processor",
29+
"utility"
30+
],
2431
"author": "hideokamoto",
2532
"license": "MIT",
26-
"description": "Core library for Stripe loaders"
33+
"description": "Core library for Stripe loaders",
34+
"repository": {
35+
"type": "git",
36+
"url": "https://github.com/wpkyoto/stripe-docs-loader",
37+
"directory": "packages/core"
38+
},
39+
"bugs": {
40+
"url": "https://github.com/wpkyoto/stripe-docs-loader/issues"
41+
},
42+
"homepage": "https://github.com/wpkyoto/stripe-docs-loader/tree/main/packages/core#readme",
43+
"publishConfig": {
44+
"access": "public"
45+
}
2746
}

packages/langchain-stripe-loader/package.json

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,38 @@
1818
"scripts": {
1919
"dev": "vite build --watch",
2020
"build": "vite build && tsc --emitDeclarationOnly",
21-
"test": "vitest run"
21+
"test": "vitest run",
22+
"prepublishOnly": "npm run build"
2223
},
2324
"dependencies": {
2425
"@langchain/core": "^0.3.42",
25-
"stripe-loaders-core": "*",
26+
"stripe-loaders-core": "^0.0.0",
2627
"turndown": "^7.2.0"
2728
},
28-
"keywords": [],
29+
"keywords": [
30+
"stripe",
31+
"documentation",
32+
"loader",
33+
"langchain",
34+
"llm",
35+
"ai",
36+
"document-loader"
37+
],
2938
"author": "hideokamoto",
3039
"license": "MIT",
3140
"description": "LangChain loader for Stripe data",
41+
"repository": {
42+
"type": "git",
43+
"url": "https://github.com/wpkyoto/stripe-docs-loader",
44+
"directory": "packages/langchain-stripe-loader"
45+
},
46+
"bugs": {
47+
"url": "https://github.com/wpkyoto/stripe-docs-loader/issues"
48+
},
49+
"homepage": "https://github.com/wpkyoto/stripe-docs-loader/tree/main/packages/langchain-stripe-loader#readme",
50+
"publishConfig": {
51+
"access": "public"
52+
},
3253
"devDependencies": {
3354
"@types/turndown": "^5.0.5"
3455
}

0 commit comments

Comments
 (0)