forked from nuxt/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.13 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@nuxt/scripts",
"type": "module",
"version": "0.4.3",
"packageManager": "[email protected]",
"description": "Load third-party scripts with better performance, privacy and DX in Nuxt Apps.",
"author": {
"website": "https://harlanzw.com",
"name": "Harlan Wilton",
"url": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/scripts.git"
},
"bugs": {
"url": "https://github.com/nuxt/scripts/issues"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./registry": {
"types": "./dist/registry.d.ts",
"import": "./dist/registry.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm prepack",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"prepack": "nuxt-module-build build && npm run client:build",
"dev": "nuxi dev playground",
"dev:ssl": "nuxi dev playground --https",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"typecheck": "pnpm dlx vue-tsc --noEmit",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:types": "npx nuxi typecheck"
},
"build": {
"externals": [
"@unhead/vue",
"@unhead/schema",
"#nuxt-scripts",
"#nuxt-scripts-validator"
]
},
"dependencies": {
"@nuxt/devtools-kit": "^1.3.1",
"@nuxt/devtools-ui-kit": "^1.3.1",
"@nuxt/kit": "^3.11.2",
"@types/google.maps": "^3.55.9",
"@types/stripe-v3": "^3.1.33",
"@types/vimeo__player": "^2.18.3",
"@types/youtube": "^0.0.50",
"@unhead/vue": "^1.9.10",
"@vueuse/core": "^10.9.0",
"consola": "^3.2.3",
"defu": "^6.1.4",
"estree-walker": "^3.0.3",
"h3": "^1.11.1",
"magic-string": "^0.30.10",
"mlly": "^1.7.0",
"ofetch": "^1.3.4",
"ohash": "^1.1.3",
"pathe": "^1.1.2",
"pkg-types": "^1.1.1",
"semver": "^7.6.2",
"shiki": "^1.5.2",
"sirv": "^2.0.4",
"std-env": "^3.7.0",
"third-party-capital": "^1.0.28",
"ufo": "^1.5.3",
"unimport": "^3.7.1",
"unplugin": "^1.10.1",
"unstorage": "^1.10.2",
"valibot": "^0.30.0"
},
"devDependencies": {
"@antfu/eslint-config": "2.18.1",
"@nuxt/devtools-ui-kit": "^1.3.1",
"@nuxt/module-builder": "^0.6.0",
"@nuxt/test-utils": "3.13.0",
"@types/semver": "^7.5.8",
"@unhead/schema": "^1.9.10",
"acorn-loose": "^8.4.0",
"bumpp": "^9.4.1",
"changelogen": "^0.5.5",
"eslint": "9.3.0",
"nuxt": "^3.11.2",
"playwright-core": "^1.44.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"vue": "^3.4.27",
"vue-router": "^4.3.2"
},
"resolutions": {
"@nuxt/scripts": "workspace:*",
"nuxt": "^3.11.2",
"nuxt-scripts-devtools": "workspace:*",
"vue": "^3.4.27",
"vue-router": "^4.3.2"
}
}