@voicenter-team/nuxt-llms-generator 0.1.9 → 0.1.11
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/README.md +625 -625
- package/dist/chunks/llms-files-generator.mjs +313 -115
- package/dist/module.json +1 -1
- package/package.json +63 -63
package/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@voicenter-team/nuxt-llms-generator",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Nuxt 3 module for automatically generating AI-optimized documentation files (llms.txt, llms-full.txt, and individual .md files) from Umbraco CMS data using Anthropic's Claude API.",
|
|
5
|
-
"repository": "https://github.com/VoicenterTeam/nuxt-llms-generator",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/types.d.ts",
|
|
11
|
-
"import": "./dist/module.mjs",
|
|
12
|
-
"require": "./dist/module.cjs"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"main": "./dist/module.cjs",
|
|
16
|
-
"types": "./dist/types.d.ts",
|
|
17
|
-
"files": [
|
|
18
|
-
"dist"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"prepack": "nuxt-module-build prepare && nuxt-module-build build",
|
|
22
|
-
"dev": "nuxi dev playground",
|
|
23
|
-
"dev:build": "nuxi build playground",
|
|
24
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
25
|
-
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
26
|
-
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts --fix --ignore-path .gitignore",
|
|
27
|
-
"test": "vitest run",
|
|
28
|
-
"test:watch": "vitest watch",
|
|
29
|
-
"test:coverage": "vitest run --coverage",
|
|
30
|
-
"test:coverage:ui": "vitest --ui --coverage",
|
|
31
|
-
"link": "npm link",
|
|
32
|
-
"dev:documentation": "cd documentation && yarn && yarn run dev",
|
|
33
|
-
"build:documentation": "cd documentation && yarn && yarn run build"
|
|
34
|
-
},
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"@anthropic-ai/sdk": "^0.30.0",
|
|
37
|
-
"@nuxt/kit": "^3.11.2",
|
|
38
|
-
"@voicenter-team/eslint-config-ts": "^1.0.22",
|
|
39
|
-
"i": "^0.3.7",
|
|
40
|
-
"jsonpath-plus": "^8.0.0",
|
|
41
|
-
"mustache": "^4.2.0",
|
|
42
|
-
"node-html-markdown": "^1.3.0",
|
|
43
|
-
"npm": "^11.6.0",
|
|
44
|
-
"transliteration": "^2.3.5",
|
|
45
|
-
"zod": "^4.1.9"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@nuxt/devtools": "^1.1.5",
|
|
49
|
-
"@nuxt/eslint-config": "^0.3.6",
|
|
50
|
-
"@nuxt/module-builder": "^0.5.5",
|
|
51
|
-
"@nuxt/schema": "^3.11.2",
|
|
52
|
-
"@nuxt/test-utils": "^3.12.0",
|
|
53
|
-
"@optimize-lodash/rollup-plugin": "^4.0.4",
|
|
54
|
-
"@types/mustache": "^4.2.5",
|
|
55
|
-
"@types/node": "^20.12.7",
|
|
56
|
-
"@vitest/coverage-v8": "^3.2.4",
|
|
57
|
-
"changelogen": "^0.5.5",
|
|
58
|
-
"eslint": "^8.56.0",
|
|
59
|
-
"mocha": "^6.1.4",
|
|
60
|
-
"nuxt": "^3.11.2",
|
|
61
|
-
"vitest": "^3.2.4"
|
|
62
|
-
}
|
|
63
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@voicenter-team/nuxt-llms-generator",
|
|
3
|
+
"version": "0.1.11",
|
|
4
|
+
"description": "Nuxt 3 module for automatically generating AI-optimized documentation files (llms.txt, llms-full.txt, and individual .md files) from Umbraco CMS data using Anthropic's Claude API.",
|
|
5
|
+
"repository": "https://github.com/VoicenterTeam/nuxt-llms-generator",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/types.d.ts",
|
|
11
|
+
"import": "./dist/module.mjs",
|
|
12
|
+
"require": "./dist/module.cjs"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"main": "./dist/module.cjs",
|
|
16
|
+
"types": "./dist/types.d.ts",
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"prepack": "nuxt-module-build prepare && nuxt-module-build build",
|
|
22
|
+
"dev": "nuxi dev playground",
|
|
23
|
+
"dev:build": "nuxi build playground",
|
|
24
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
25
|
+
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
26
|
+
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts --fix --ignore-path .gitignore",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"test:watch": "vitest watch",
|
|
29
|
+
"test:coverage": "vitest run --coverage",
|
|
30
|
+
"test:coverage:ui": "vitest --ui --coverage",
|
|
31
|
+
"link": "npm link",
|
|
32
|
+
"dev:documentation": "cd documentation && yarn && yarn run dev",
|
|
33
|
+
"build:documentation": "cd documentation && yarn && yarn run build"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@anthropic-ai/sdk": "^0.30.0",
|
|
37
|
+
"@nuxt/kit": "^3.11.2",
|
|
38
|
+
"@voicenter-team/eslint-config-ts": "^1.0.22",
|
|
39
|
+
"i": "^0.3.7",
|
|
40
|
+
"jsonpath-plus": "^8.0.0",
|
|
41
|
+
"mustache": "^4.2.0",
|
|
42
|
+
"node-html-markdown": "^1.3.0",
|
|
43
|
+
"npm": "^11.6.0",
|
|
44
|
+
"transliteration": "^2.3.5",
|
|
45
|
+
"zod": "^4.1.9"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@nuxt/devtools": "^1.1.5",
|
|
49
|
+
"@nuxt/eslint-config": "^0.3.6",
|
|
50
|
+
"@nuxt/module-builder": "^0.5.5",
|
|
51
|
+
"@nuxt/schema": "^3.11.2",
|
|
52
|
+
"@nuxt/test-utils": "^3.12.0",
|
|
53
|
+
"@optimize-lodash/rollup-plugin": "^4.0.4",
|
|
54
|
+
"@types/mustache": "^4.2.5",
|
|
55
|
+
"@types/node": "^20.12.7",
|
|
56
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
57
|
+
"changelogen": "^0.5.5",
|
|
58
|
+
"eslint": "^8.56.0",
|
|
59
|
+
"mocha": "^6.1.4",
|
|
60
|
+
"nuxt": "^3.11.2",
|
|
61
|
+
"vitest": "^3.2.4"
|
|
62
|
+
}
|
|
63
|
+
}
|