-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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": "@nuxtjs/device",
"version": "3.2.4",
"description": "Device detection module for Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/device"
},
"license": "MIT",
"author": "Shinji Yamada <[email protected]>",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./runtime/*": {
"types": "./dist/runtime/*.d.ts",
"import": "./dist/runtime/*.mjs",
"require": "./dist/runtime/*.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"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": "^0.7.5",
"@nuxt/kit": "^3.15.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.15.4",
"changelogen": "^0.5.7",
"crawler-user-agents": "^1.0.158",
"eslint": "^9.19.0",
"happy-dom": "^16.7.3",
"nuxt": "^3.15.4",
"playwright": "^1.50.0",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"resolutions": {
"@nuxtjs/device": "workspace:*"
},
"packageManager": "[email protected]"
}