[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.

1{ 2 "name": "vite-plugin-cross-origin-storage", 3 "type": "module", 4 "version": "0.1.0", 5 "description": "Vite plugin to extract shared dependencies into content-addressed chunks loaded 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/vite-plugin-cross-origin-storage" 16 }, 17 "keywords": [ 18 "vite-plugin", 19 "cross-origin-storage", 20 "cos", 21 "content-addressed", 22 "performance" 23 ], 24 "sideEffects": false, 25 "exports": { 26 ".": { 27 "import": "./dist/index.mjs" 28 } 29 }, 30 "main": "./dist/index.mjs", 31 "module": "./dist/index.mjs", 32 "types": "./dist/index.d.mts", 33 "files": [ 34 "dist" 35 ], 36 "engines": { 37 "node": ">=20.19.0" 38 }, 39 "scripts": { 40 "build": "tsdown", 41 "dev": "vitest dev", 42 "lint": "eslint .", 43 "prepack": "pnpm build", 44 "prepublishOnly": "pnpm lint && pnpm test", 45 "test": "pnpm test:unit && pnpm test:types", 46 "test:unit": "vitest run", 47 "test:types": "tsc --noEmit" 48 }, 49 "peerDependencies": { 50 "vite": "^5.0.0 || ^6.0.0 || ^7.0.0" 51 }, 52 "dependencies": { 53 "magic-string": "^0.30.21", 54 "rolldown": "1.1.0" 55 }, 56 "devDependencies": { 57 "@types/node": "latest", 58 "eslint": "^10.4.1", 59 "hookable": "^5.5.3", 60 "playwright-core": "^1.61.1", 61 "tsdown": "^0.20.3", 62 "typescript": "~6.0.3", 63 "unhead": "^2.1.0", 64 "vite": "^7.3.5", 65 "vitest": "^4.1.8", 66 "vue": "^3.5.0" 67 } 68}