-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"name": "nuxt-betterstack",
"version": "2.0.0",
"description": "Nuxt module for BetterStack logging - send logs from both SSR and client-side to BetterStack",
"repository": {
"type": "git",
"url": "https://github.com/nicogenz/nuxt-betterstack"
},
"license": "MIT",
"type": "module",
"keywords": [
"nuxt",
"nuxt-module",
"betterstack",
"logtail",
"logging",
"logs",
"observability"
],
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build prepare && nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@logtail/browser": "^0.5.6",
"@logtail/node": "^0.5.6",
"@nuxt/kit": "^4.2.2",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/devtools": "^3.1.1",
"@nuxt/eslint-config": "^1.12.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.2",
"@types/node": "latest",
"eslint": "^9.39.2",
"nuxt": "^4.2.2",
"typescript": "~5.9.3",
"vue-tsc": "^3.2.1"
}
}