generated from unjs/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.47 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nitro-applicationinsights",
"version": "1.0.2",
"description": "Application insights plugin for nitro.",
"repository": "huang-julien/nitro-applicationinsights",
"license": "MIT",
"keywords": [
"nitro",
"applicationinsights",
"nitropack",
"unjs"
],
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./runtime/*": {
"types": "./dist/runtime/*",
"import": "./dist/runtime/*",
"require": "./dist/runtime/*"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev:prepare": "pnpm build --stub && pnpm nitropack prepare && pnpm nitro prepare ./playground",
"dev": "pnpm nitro dev ./playground",
"dev:build": "pnpm nitro build ./playground",
"play": "jiti playground",
"lint": "pnpm nitro prepare playground && eslint --cache .",
"lint:fix": "pnpm nitro prepare playground && eslint --cache . --fix",
"prepack": "pnpm run build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && pnpm build && vitest run --coverage --c ./test/vitest.config.ts",
"test:types": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^1.30.1",
"@opentelemetry/sdk-trace-node": "^1.30.1",
"@opentelemetry/semantic-conventions": "^1.28.0",
"@types/node": "^22.10.10",
"@vitest/coverage-v8": "^3.0.4",
"@vitest/ui": "^3.0.4",
"changelogen": "^0.5.7",
"eslint": "9.19.0",
"eslint-config-unjs": "^0.4.2",
"jiti": "^2.4.2",
"nitro-applicationinsights": "link:./",
"ofetch": "^1.4.1",
"rollup": "^4.32.0",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vitest": "^3.0.4"
},
"packageManager": "[email protected]",
"dependencies": {
"@opentelemetry/instrumentation": "^0.57.1",
"@opentelemetry/instrumentation-http": "^0.57.1",
"@opentelemetry/instrumentation-undici": "^0.10.0",
"applicationinsights": "^3.4.0",
"defu": "^6.1.4",
"magic-string": "^0.30.17",
"mlly": "^1.7.4",
"nitro-opentelemetry": "^0.7.1",
"nitro-test-utils": "^0.9.0",
"pathe": "^2.0.2"
},
"peerDependencies": {
"h3": ">=1.14.0",
"nitropack": ">=2.10.4"
}
}