[READ-ONLY] Mirror of https://github.com/danielroe/cross-origin-storage. Load shared dependencies from Cross-Origin Storage (COS).
cross-origin-storage experimental nuxt vite vite-plugin
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 1.6 kB View raw
1{ 2 "name": "nuxt-cos", 3 "type": "module", 4 "version": "0.1.0", 5 "description": "Nuxt module to load shared dependencies from Cross-Origin Storage", 6 "author": { 7 "name": "Daniel Roe", 8 "email": "daniel@roe.dev", 9 "url": "https://github.com/danielroe" 10 }, 11 "license": "MIT", 12 "repository": { 13 "type": "git", 14 "url": "git+https://github.com/danielroe/nuxt-cos.git", 15 "directory": "packages/nuxt-cos" 16 }, 17 "keywords": [ 18 "nuxt", 19 "nuxt-module", 20 "cross-origin-storage", 21 "cos", 22 "performance" 23 ], 24 "exports": { 25 ".": { 26 "types": "./dist/types.d.mts", 27 "import": "./dist/module.mjs" 28 } 29 }, 30 "main": "./dist/module.mjs", 31 "typesVersions": { 32 "*": { 33 ".": [ 34 "./dist/types.d.mts" 35 ] 36 } 37 }, 38 "files": [ 39 "dist" 40 ], 41 "scripts": { 42 "build": "nuxt-module-build prepare && nuxt-module-build build", 43 "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare", 44 "lint": "eslint .", 45 "prepack": "pnpm --filter vite-plugin-cross-origin-storage build && pnpm build", 46 "test": "pnpm test:unit && pnpm test:types", 47 "test:unit": "vitest run", 48 "test:types": "tsc --noEmit && vitest run --typecheck.only" 49 }, 50 "dependencies": { 51 "@nuxt/kit": "^4.4.8", 52 "vite-plugin-cross-origin-storage": "workspace:*" 53 }, 54 "devDependencies": { 55 "@nuxt/module-builder": "^1.0.2", 56 "@nuxt/schema": "^4.4.8", 57 "@nuxt/test-utils": "^4.0.3", 58 "@types/node": "latest", 59 "eslint": "^10.4.1", 60 "nuxt": "^4.4.8", 61 "playwright-core": "^1.61.1", 62 "typescript": "~6.0.3", 63 "vitest": "^4.1.8" 64 } 65}