51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "vue-bundle-renderer",
|
|
"version": "2.1.2",
|
|
"description": "Bundle Renderer for Vue 3.0",
|
|
"repository": "nuxt-contrib/vue-bundle-renderer",
|
|
"license": "MIT",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./runtime": {
|
|
"types": "./dist/runtime.d.ts",
|
|
"import": "./dist/runtime.mjs",
|
|
"require": "./dist/runtime.cjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"runtime.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"dev": "vitest",
|
|
"lint": "eslint src",
|
|
"prepack": "unbuild",
|
|
"release": "pnpm test && pnpm build && changelogen --release --push && npm publish",
|
|
"test": "pnpm lint && pnpm vitest run --coverage && tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"ufo": "^1.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.16.5",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"changelogen": "^0.6.2",
|
|
"eslint": "^9.32.0",
|
|
"typescript": "^5.8.3",
|
|
"unbuild": "^3.6.0",
|
|
"vite": "^7.0.6",
|
|
"vitest": "3.2.4",
|
|
"vue": "3.5.18",
|
|
"@nuxt/eslint-config": "^1.7.1"
|
|
},
|
|
"packageManager": "pnpm@10.13.1"
|
|
}
|