forked from nuxt-modules/device
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "@nuxtjs/device",
"version": "3.1.0",
"description": "Device detection module for Nuxt.js",
"repository": "nuxt-community/device-module",
"license": "MIT",
"author": "Shinji Yamada <dotneet@gmail.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"new-version": "standard-version",
"release": "git push --follow-tags && npm publish",
"bot-regex": "node scripts/create-bots-regex.js",
"test": "NUXT_TELEMETRY_DISABLED=1 yarn nuxi prepare test/fixtures && JITI_ESM_RESOLVE=1 vitest run --dir test"
},
"dependencies": {
"@nuxt/kit": "^3.4.3",
"defu": "^6.1.2"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/test-utils": "^3.4.3",
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "latest",
"jsdom": "^20.0.2",
"node-fetch": "^3.3.0",
"nuxt": "^3.4.3",
"playwright": "^1.27.1",
"standard-version": "^9.5.0",
"typescript": "^4.8.3",
"vitest": "^0.31.0"
}
}