[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
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 "contributors": [
12 {
13 "name": "Thomas Steiner",
14 "url": "https://github.com/tomayac"
15 }
16 ],
17 "license": "MIT",
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/danielroe/nuxt-cos.git",
21 "directory": "packages/vite-plugin-cross-origin-storage"
22 },
23 "keywords": [
24 "vite-plugin",
25 "cross-origin-storage",
26 "cos",
27 "content-addressed",
28 "performance"
29 ],
30 "sideEffects": false,
31 "exports": {
32 ".": {
33 "import": "./dist/index.mjs"
34 }
35 },
36 "main": "./dist/index.mjs",
37 "module": "./dist/index.mjs",
38 "types": "./dist/index.d.mts",
39 "files": [
40 "dist"
41 ],
42 "engines": {
43 "node": ">=20.19.0"
44 },
45 "scripts": {
46 "build": "tsdown",
47 "dev": "vitest dev",
48 "lint": "eslint .",
49 "prepack": "pnpm build",
50 "prepublishOnly": "pnpm lint && pnpm test",
51 "test": "pnpm test:unit && pnpm test:types",
52 "test:unit": "vitest run",
53 "test:types": "tsc --noEmit && vitest run --typecheck.only"
54 },
55 "peerDependencies": {
56 "vite": "^5.0.0 || ^6.0.0 || ^7.0.0"
57 },
58 "dependencies": {
59 "magic-string": "^0.30.21",
60 "rolldown": "1.1.0"
61 },
62 "devDependencies": {
63 "@types/node": "latest",
64 "eslint": "^10.4.1",
65 "hookable": "^5.5.3",
66 "playwright-core": "^1.61.1",
67 "tsdown": "^0.20.3",
68 "typescript": "~6.0.3",
69 "unhead": "^2.1.0",
70 "vite": "^7.3.5",
71 "vitest": "^4.1.8",
72 "vue": "^3.5.0"
73 }
74}