@oxog/npm-llms 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,88 @@
1
+ {
2
+ "name": "@oxog/npm-llms",
3
+ "version": "1.0.0",
4
+ "description": "Extract LLM-optimized documentation (llms.txt, llms-full.txt) from any NPM package with AI enrichment",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "bin": {
10
+ "npm-llms": "./dist/cli/index.js"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "import": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ },
18
+ "require": {
19
+ "types": "./dist/index.d.cts",
20
+ "default": "./dist/index.cjs"
21
+ }
22
+ },
23
+ "./plugins": {
24
+ "import": {
25
+ "types": "./dist/plugins/index.d.ts",
26
+ "default": "./dist/plugins/index.js"
27
+ },
28
+ "require": {
29
+ "types": "./dist/plugins/index.d.cts",
30
+ "default": "./dist/plugins/index.cjs"
31
+ }
32
+ }
33
+ },
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "sideEffects": false,
38
+ "scripts": {
39
+ "build": "tsup",
40
+ "dev": "tsup --watch",
41
+ "test": "vitest run",
42
+ "test:watch": "vitest",
43
+ "test:coverage": "vitest run --coverage",
44
+ "lint": "eslint src/",
45
+ "lint:fix": "eslint src/ --fix",
46
+ "format": "prettier --write .",
47
+ "format:check": "prettier --check .",
48
+ "typecheck": "tsc --noEmit",
49
+ "prepublishOnly": "npm run build && npm run test:coverage"
50
+ },
51
+ "keywords": [
52
+ "llms",
53
+ "llms-txt",
54
+ "documentation",
55
+ "npm",
56
+ "api-docs",
57
+ "typescript",
58
+ "zero-dependency",
59
+ "ai",
60
+ "claude",
61
+ "openai",
62
+ "cursor",
63
+ "windsurf"
64
+ ],
65
+ "author": "Ersin Koç",
66
+ "license": "MIT",
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "git+https://github.com/ersinkoc/npm-llms.git"
70
+ },
71
+ "bugs": {
72
+ "url": "https://github.com/ersinkoc/npm-llms/issues"
73
+ },
74
+ "homepage": "https://npm-llms.oxog.dev",
75
+ "engines": {
76
+ "node": ">=18"
77
+ },
78
+ "devDependencies": {
79
+ "@oxog/cli": "^1.0.0",
80
+ "@types/node": "^20.0.0",
81
+ "@vitest/coverage-v8": "^2.0.0",
82
+ "eslint": "^9.0.0",
83
+ "prettier": "^3.0.0",
84
+ "tsup": "^8.0.0",
85
+ "typescript": "^5.0.0",
86
+ "vitest": "^2.0.0"
87
+ }
88
+ }