-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
executable file
·110 lines (110 loc) · 3.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@nuxtjs/sentry",
"version": "8.0.8",
"description": "Sentry module for Nuxt.js",
"repository": "nuxt-community/sentry-module",
"license": "MIT",
"contributors": [
{
"name": "Diederik van den Burger <[email protected]>"
},
{
"name": "Rafal Chlodnicki (@rchl)"
}
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/module.d.ts"
}
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn prepack",
"prepack": "nuxt-module-build build",
"dev:prepare": "nuxt-module-build build --stub",
"dev:fixture": "node ./node_modules/nuxt/bin/nuxt.js -c ./test/fixture/default/nuxt.config",
"dev:fixture:build": "node ./node_modules/nuxt/bin/nuxt.js build -c ./test/fixture/default/nuxt.config",
"dev:fixture:start": "node ./node_modules/nuxt/bin/nuxt.js start -c ./test/fixture/default/nuxt.config",
"dev:generate": "nuxt generate -c ./test/fixture/default/nuxt.config --force-build",
"analyze": "node ./node_modules/nuxt/bin/nuxt.js build --analyze -c ./test/fixture/default/nuxt.config",
"size": "yarn build && cd size-check && yarn build && cd .. && yarn size-limit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:fixture": "eslint --no-ignore 'test/fixture/*/.nuxt/sentry.*'",
"release": "release-it",
"test": "yarn prepack && vitest run --poolOptions.threads.singleThread && yarn lint:fixture && yarn typecheck",
"test:watch": "vitest",
"typecheck": "yarn dev:prepare && tsc && tsc -p ./test/tsconfig.json"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run typecheck",
"post-merge": "yarn"
}
},
"dependencies": {
"@sentry/core": "^7.119.0",
"@sentry/integrations": "^7.114.0",
"@sentry/node": "^7.119.0",
"@sentry/utils": "^7.119.0",
"@sentry/vue": "^7.119.0",
"consola": "^3.2.3",
"defu": "^6.1.4",
"hash-sum": "^2.0.0",
"jiti": "^1.21.0",
"lodash.mergewith": "^4.6.2",
"mlly": "^1.5.0",
"pathe": "^1.1.2"
},
"devDependencies": {
"@nuxt/module-builder": "0.8.3",
"@nuxt/types": "2.18.1",
"@nuxt/typescript-build": "^3.0.2",
"@nuxtjs/module-test-utils": "1.6.3",
"@release-it/conventional-changelog": "8.0.1",
"@sentry/profiling-node": "7.119.0",
"@sentry/webpack-plugin": "2.22.3",
"@size-limit/file": "11.1.4",
"@types/hash-sum": "1.0.2",
"@types/lodash.mergewith": "4.6.9",
"@types/node": "20.16.3",
"@types/request-promise-native": "1.0.21",
"eslint": "^9.12.0",
"eslint-config-rchl-base": "^2.0.3",
"eslint-config-rchl-typescript": "^3.0.2",
"eslint-config-rchl-vue": "^3.0.0",
"hookable": "5.5.3",
"husky": "4.3.8",
"lint-staged": "15.2.10",
"npm-run-all2": "6.2.2",
"nuxt": "2.18.1",
"playwright-chromium": "1.46.1",
"release-it": "17.6.0",
"sass": "1.77.8",
"sentry-testkit": "5.0.9",
"size-limit": "11.1.4",
"typescript": "5.5.4",
"vitest": "2.1.2",
"vue": "2.7.16",
"vuex": "3.6.2"
},
"resolutions": {
"watchpack": "^2.0.0"
}
}