-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nuxt-laravel-echo",
"version": "1.0.0",
"author": {
"name": "Artem Manchenkov",
"email": "artem@manchenkoff.me",
"url": "https://github.com/manchenkoff"
},
"description": "Nuxt module for Laravel Echo integration",
"homepage": "https://echo.manchenkoff.me",
"repository": {
"type": "git",
"url": "git+https://github.com/manchenkoff/nuxt-laravel-echo.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"rc": "pnpm pack --pack-destination dist",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && pnpm fixtures:prepare",
"fixtures:prepare": "for d in test/fixtures/*/; do nuxi prepare \"$d\"; done",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"validate": "pnpm lint && pnpm test:types && pnpm test",
"upgrade": "pnpm self-update && npx nuxt upgrade --dedupe && pnpm up && pnpm dev:prepare && pnpm validate"
},
"dependencies": {
"defu": "^6.1.7",
"laravel-echo": "^2.4.0",
"ofetch": "^1.5.1",
"pusher-js": "^8.5.0"
},
"devDependencies": {
"@nuxt/devtools": "4.0.0-alpha.7",
"@nuxt/eslint-config": "^1.16.0",
"@nuxt/kit": "^4.4.8",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.8",
"@nuxt/test-utils": "^4.0.3",
"@playwright/test": "^1.61.1",
"@types/node": "^26.1.1",
"@vue/test-utils": "^2.4.11",
"changelogen": "^0.6.2",
"eslint": "^10.7.0",
"h3": "^1.15.11",
"happy-dom": "^20.10.6",
"nuxt": "^4.4.8",
"typescript": "^6.0.3",
"vitest": "^4.1.10",
"vue": "^3.5.40",
"vue-tsc": "^3.3.7"
},
"packageManager": "pnpm@11.1.2",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"unrs-resolver"
]
}
}