|
| 1 | +{ |
| 2 | + "name": "@nuxtjs/llms", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "My new Nuxt module", |
| 5 | + "repository": "your-org/my-module", |
| 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 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 .", |
| 27 | + "typecheck": "nuxi typecheck", |
| 28 | + "test": "vitest run", |
| 29 | + "test:watch": "vitest watch", |
| 30 | + "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit", |
| 31 | + "verify": "npm run dev:prepare && npm run lint && npm run test && npm run typecheck" |
| 32 | + }, |
| 33 | + "dependencies": { |
| 34 | + "@nuxt/kit": "^3.15.4" |
| 35 | + }, |
| 36 | + "devDependencies": { |
| 37 | + "@nuxtjs/llms": "link:.", |
| 38 | + "@nuxt/devtools": "^2.1.0", |
| 39 | + "@nuxt/eslint-config": "^1.0.1", |
| 40 | + "@nuxt/module-builder": "^0.8.4", |
| 41 | + "@nuxt/schema": "^3.15.4", |
| 42 | + "@nuxt/test-utils": "^3.15.4", |
| 43 | + "@types/node": "latest", |
| 44 | + "changelogen": "^0.5.7", |
| 45 | + "eslint": "^9.20.1", |
| 46 | + "nuxt": "^3.15.4", |
| 47 | + "typescript": "~5.7.3", |
| 48 | + "vitest": "^3.0.5", |
| 49 | + "vue-tsc": "^2.2.2" |
| 50 | + }, |
| 51 | + "packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0" |
| 52 | +} |
0 commit comments