-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.76 KB
/
package.json
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
{
"name": "@artmizu/nuxt-prometheus",
"type": "module",
"version": "2.4.0",
"packageManager": "[email protected]",
"description": "Allows you to better understand what's going on with your application and how to optimize performance and other things in production",
"license": "MIT",
"repository": "artmizu/nuxt-prometheus",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"default": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build prepare && nuxt-module-build build && nuxi prepare playground",
"test": "pnpm exec playwright-core install && vitest",
"test:type": "vitest --typecheck.only --typecheck.ignoreSourceErrors",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@mswjs/interceptors": "^0.28.4",
"@nuxt/kit": "^3.11.2",
"consola": "^3.2.3",
"defu": "^6.1.2",
"h3": "^1.7.1",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.30.1",
"@nuxt/module-builder": "^0.6.0",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.1",
"@types/node": "^18.11.15",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.29.0",
"happy-dom": "^14.10.1",
"husky": "^8.0.2",
"nuxt": "^3.11.2",
"playwright-core": "^1.44.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
}
}