-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.01 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.01 KB
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
{
"name": "@nuxtjs/device",
"version": "4.0.0",
"description": "Device detection module for Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/device.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./runtime/*": {
"types": "./dist/runtime/*.d.mts",
"import": "./dist/runtime/*.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"runtime/*": [
"./dist/runtime/*.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"prepack": "pnpm build",
"release": "pnpm lint && pnpm test && pnpm prepack && changelogen --release && pnpm publish && git push --follow-tags",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/kit": "^4.4.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/test-utils": "^4.0.0",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.6.2",
"crawler-user-agents": "^1.37.0",
"eslint": "^10.1.0",
"happy-dom": "^20.8.9",
"nuxt": "^4.4.2",
"playwright": "^1.58.2",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"resolutions": {
"@nuxtjs/device": "workspace:*"
},
"packageManager": "pnpm@10.33.0"
}