-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.31 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@teages/nuxt-legacy",
"type": "module",
"version": "2.0.2",
"packageManager": "pnpm@11.8.0",
"description": "A Nuxt module for supporting legacy browsers.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Teages/nuxt-legacy.git"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "pnpm -C playgrounds/v4 dev",
"dev:v3": "pnpm -C playgrounds/v3 dev",
"dev:build": "pnpm -C playgrounds/v4 build",
"dev:build-v3": "pnpm -C playgrounds/v3 build",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && pnpm --filter \"./playgrounds/*\" dev:prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run --project unit",
"test:watch": "vitest watch --project unit",
"test:e2e": "vitest run --project e2e",
"test:types": "vue-tsc --noEmit && pnpm --filter \"./playgrounds/*\" exec vue-tsc --noEmit"
},
"peerDependencies": {
"@vitejs/plugin-legacy": "^7.0.0 || ^8.0.0",
"nuxt": "^3.18.0 || >=4.0.3"
},
"peerDependenciesMeta": {
"@vitejs/plugin-legacy": {
"optional": true
}
},
"dependencies": {
"@nuxt/kit": "catalog:prod"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:dev",
"@nuxt/devtools": "catalog:dev",
"@nuxt/eslint-config": "catalog:dev",
"@nuxt/module-builder": "catalog:dev",
"@nuxt/schema": "catalog:dev",
"@nuxt/test-utils": "catalog:dev",
"@types/node": "catalog:dev",
"@types/selenium-webdriver": "catalog:dev",
"@vitejs/plugin-legacy": "catalog:dev",
"browserstack-local": "catalog:dev",
"eslint": "catalog:dev",
"get-port-please": "catalog:dev",
"node-html-parser": "catalog:dev",
"nuxt": "catalog:dev",
"plugin-legacy-v7": "catalog:dev",
"plugin-legacy-v8": "catalog:dev",
"selenium-webdriver": "catalog:dev",
"typescript": "catalog:dev",
"vitest": "catalog:dev",
"vue-tsc": "catalog:dev"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}