[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": "nuxt-cos",
3 "version": "1.0.0",
4 "description": "My new Nuxt module",
5 "repository": "danielroe/nuxt-cos",
6 "license": "MIT",
7 "type": "module",
8 "exports": {
9 ".": {
10 "types": "./dist/types.d.mts",
11 "import": "./dist/module.mjs"
12 }
13 },
14 "main": "./dist/module.mjs",
15 "typesVersions": {
16 "*": {
17 ".": [
18 "./dist/types.d.mts"
19 ]
20 }
21 },
22 "files": [
23 "dist"
24 ],
25 "scripts": {
26 "prepack": "nuxt-module-build build",
27 "dev": "npm run dev:prepare && nuxt dev playground",
28 "dev:build": "nuxt build playground",
29 "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
30 "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
31 "lint": "eslint .",
32 "test": "vitest run",
33 "test:watch": "vitest watch",
34 "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
35 },
36 "dependencies": {
37 "@nuxt/kit": "^4.4.8",
38 "rolldown": "1.1.0"
39 },
40 "devDependencies": {
41 "@nuxt/devtools": "^3.2.4",
42 "@nuxt/eslint-config": "^1.15.2",
43 "@nuxt/module-builder": "^1.0.2",
44 "@nuxt/schema": "^4.4.8",
45 "@nuxt/test-utils": "^4.0.3",
46 "@types/node": "latest",
47 "changelogen": "^0.6.2",
48 "eslint": "^10.4.1",
49 "nuxt": "^4.4.8",
50 "typescript": "~6.0.3",
51 "vitest": "^4.1.8",
52 "vue-tsc": "^3.3.3"
53 }
54}