forked from nuxt/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.87 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@nuxt/scripts",
"type": "module",
"version": "0.9.2",
"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"
},
"sideEffects": false,
"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 dev:prepare && 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",
"release:minor": "npm run lint && npm run test && npm run prepack && changelogen --minor --release",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:types": "echo 'broken due to type regeneration, use pnpm typecheck' && npx nuxi typecheck",
"script:generate-tpc": "bun ./scripts/generateTpcScripts.ts && pnpm lint:fix"
},
"build": {
"externals": [
"@unhead/vue",
"@unhead/schema",
"third-party-capital",
"knitwork",
"estree-walker",
"#build/modules/nuxt-scripts-gtm",
"#build/modules/nuxt-scripts-ga",
"@vimeo/player",
"esbuild"
]
},
"dependencies": {
"@nuxt/devtools-kit": "^1.4.2",
"@nuxt/devtools-ui-kit": "^1.4.2",
"@nuxt/kit": "^3.13.2",
"@types/google.maps": "^3.58.0",
"@types/stripe-v3": "^3.1.33",
"@types/vimeo__player": "^2.18.3",
"@types/youtube": "^0.1.0",
"@unhead/vue": "1.11.6",
"@vueuse/core": "^11.0.3",
"consola": "^3.2.3",
"defu": "^6.1.4",
"h3": "^1.12.0",
"magic-string": "^0.30.11",
"mlly": "^1.7.1",
"ofetch": "^1.3.4",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"pkg-types": "^1.2.0",
"semver": "^7.6.3",
"shiki": "1.17.6",
"sirv": "^2.0.4",
"std-env": "^3.7.0",
"third-party-capital": "2.3.0",
"ufo": "^1.5.4",
"unimport": "^3.12.0",
"unplugin": "^1.14.1",
"unstorage": "^1.12.0",
"valibot": "^0.42.0"
},
"devDependencies": {
"@nuxt/devtools-ui-kit": "^1.4.2",
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "3.14.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/typescript-estree": "^8.5.0",
"@unhead/schema": "1.11.6",
"acorn-loose": "^8.4.0",
"bumpp": "^9.5.2",
"changelogen": "^0.5.5",
"eslint": "9.10.0",
"eslint-plugin-n": "^17.10.2",
"knitwork": "^1.1.0",
"nuxt": "^3.13.2",
"nuxt-scripts-devtools": "workspace:*",
"playwright-core": "^1.47.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1",
"vue": "^3.5.5",
"vue-router": "^4.4.5"
},
"resolutions": {
"@nuxt/schema": "3.13.2",
"@nuxt/scripts": "workspace:*",
"@unhead/dom": "1.11.6",
"@unhead/schema": "1.11.6",
"@unhead/shared": "1.11.6",
"@unhead/ssr": "1.11.6",
"@unhead/vue": "1.11.6",
"nuxt": "^3.13.2",
"nuxt-scripts-devtools": "workspace:*",
"unhead": "1.11.6",
"vue": "^3.5.5",
"vue-router": "^4.4.5"
}
}