-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
80 lines (80 loc) · 2.26 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
{
"name": "@nuxt/telemetry",
"packageManager": "pnpm@9.15.1",
"version": "2.6.4",
"repository": "nuxt/telemetry",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"bin": {
"nuxt-telemetry": "./bin/nuxt-telemetry.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "nuxt-module-build build",
"dev": "NUXT_TELEMETRY_DEBUG=1 nuxi dev playground",
"dev:build": "NUXT_TELEMETRY_DEBUG=1 nuxi build playground",
"dev:generate": "NUXT_TELEMETRY_DEBUG=1 nuxi generate playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"nuxt-telemetry": "node ./bin/nuxt-telemetry.mjs",
"prepack": "nuxt-module-build build",
"release": "pnpm test && pnpm build && pnpm changelogen --release --push && pnpm publish",
"test": "vitest run",
"test:engines": "installed-check -d --no-workspaces",
"test:knip": "knip",
"test:types": "nuxt-module-build prepare && nuxi prepare playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.15.1",
"citty": "^0.1.6",
"consola": "^3.3.1",
"destr": "^2.0.3",
"dotenv": "^16.4.7",
"git-url-parse": "^16.0.0",
"is-docker": "^3.0.0",
"ofetch": "^1.4.1",
"package-manager-detector": "^0.2.8",
"parse-git-config": "^3.0.0",
"pathe": "^2.0.0",
"rc9": "^2.1.2",
"std-env": "^3.8.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.7.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.1",
"@nuxt/test-utils": "^3.15.1",
"@types/git-url-parse": "^9.0.3",
"@types/parse-git-config": "^3.0.4",
"@vitest/coverage-v8": "^2.1.8",
"changelogen": "^0.5.7",
"eslint": "^9.17.0",
"get-port-please": "^3.1.2",
"h3": "^1.13.0",
"installed-check": "^9.3.0",
"knip": "^5.41.1",
"nuxt": "^3.15.1",
"typescript": "^5.6.3",
"unbuild": "^3.0.1",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
},
"resolutions": {
"@nuxt/telemetry": "workspace:*"
},
"engines": {
"node": ">=18.20.5"
}
}