-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "nuxt-applicationinsights",
"version": "0.7.0",
"description": "Application insights integration for Nuxt",
"repository": "huang-julien/nuxt-applicationinsights",
"license": "MIT",
"type": "module",
"keywords": [
"nuxt",
"applicationinsights",
"azure",
"microsoft",
"nuxt-module"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit"
},
"dependencies": {
"@microsoft/applicationinsights-core-js": "^3.1.0",
"@microsoft/applicationinsights-web": "^3.1.0",
"@nuxt/eslint": "^0.6.0",
"defu": "^6.1.2",
"mlly": "^1.6.1",
"nitro-applicationinsights": "^0.15.0"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.6.0",
"@nuxt/kit": "^3.13.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.7.4",
"@types/node": "^22.0.0",
"changelogen": "^0.5.5",
"eslint": "9.13.0",
"nitropack": "^2.9.7",
"nuxt": "^3.13.1",
"nuxt-applicationinsights": "link:./",
"vitest": "^2.0.0",
"vue-tsc": "^2.0.19"
},
"packageManager": "[email protected]"
}