|
| 1 | +{ |
| 2 | + "name": "nuxt-compile-markdown", |
| 3 | + "version": "0.0.0", |
| 4 | + "packageManager": "pnpm@8.6.12", |
| 5 | + "description": "My new Nuxt module", |
| 6 | + "repository": "your-org/nuxt-compile-markdown", |
| 7 | + "license": "MIT", |
| 8 | + "type": "module", |
| 9 | + "exports": { |
| 10 | + ".": { |
| 11 | + "types": "./dist/types.d.ts", |
| 12 | + "import": "./dist/module.mjs", |
| 13 | + "require": "./dist/module.cjs" |
| 14 | + } |
| 15 | + }, |
| 16 | + "main": "./dist/module.cjs", |
| 17 | + "types": "./dist/types.d.ts", |
| 18 | + "files": [ |
| 19 | + "dist" |
| 20 | + ], |
| 21 | + "scripts": { |
| 22 | + "prepack": "nuxt-module-build", |
| 23 | + "dev": "nuxi dev playground", |
| 24 | + "dev:build": "nuxi build playground", |
| 25 | + "dev:prepare": "nuxt-module-build --stub && nuxi prepare playground", |
| 26 | + "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags", |
| 27 | + "lint": "eslint .", |
| 28 | + "test": "vitest run", |
| 29 | + "test:watch": "vitest watch" |
| 30 | + }, |
| 31 | + "dependencies": { |
| 32 | + "@nuxt/kit": "^3.6.5", |
| 33 | + "unplugin-vue-markdown": "^0.24.1" |
| 34 | + }, |
| 35 | + "devDependencies": { |
| 36 | + "@antfu/eslint-config": "^0.40.2", |
| 37 | + "@nuxt/devtools": "latest", |
| 38 | + "@nuxt/module-builder": "^0.4.0", |
| 39 | + "@nuxt/schema": "^3.6.5", |
| 40 | + "@nuxt/test-utils": "^3.6.5", |
| 41 | + "@types/node": "^20.5.0", |
| 42 | + "changelogen": "^0.5.4", |
| 43 | + "eslint": "^8.47.0", |
| 44 | + "nuxt": "^3.6.5", |
| 45 | + "vitest": "^0.34.1" |
| 46 | + } |
| 47 | +} |
0 commit comments