-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
152 lines (152 loc) · 4.06 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "@nuxt/scripts",
"type": "module",
"version": "0.11.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": "vue-tsc --noEmit",
"bump": "bumpp package.json --commit --push --tag",
"release": "pnpm build && pnpm bump && pnpm publish --tag latest -r --no-git-checks",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm dev:prepare && vitest --run --exclude **/__runtime__ && pnpm test:runtime",
"test:runtime": "cd test/fixtures/basic && vitest --run",
"test:types": "echo 'broken due to type regeneration, use pnpm typecheck' && npx nuxi typecheck"
},
"build": {
"externals": [
"@unhead/vue",
"@unhead/schema",
"knitwork",
"estree-walker",
"#build/modules/nuxt-scripts-gtm",
"#build/modules/nuxt-scripts-ga",
"@vimeo/player",
"esbuild",
"unimport",
"#nuxt-scripts/types",
"#nuxt-scripts-validator"
]
},
"peerDependencies": {
"@stripe/stripe-js": "^5.10.0",
"@types/google.maps": "^3.58.1",
"@types/vimeo__player": "^2.18.3",
"@types/youtube": "^0.1.0",
"@unhead/vue": "^2.0.0-rc.8",
"nuxt": "^3.16.0"
},
"peerDependenciesMeta": {
"@stripe/stripe-js": {
"optional": true
},
"@types/google.maps": {
"optional": true
},
"@types/vimeo__player": {
"optional": true
},
"@types/youtube": {
"optional": true
}
},
"dependencies": {
"@nuxt/kit": "catalog:",
"@vueuse/core": "^13.0.0",
"consola": "^3.4.0",
"defu": "^6.1.4",
"h3": "^1.15.1",
"magic-string": "^0.30.17",
"ofetch": "^1.4.1",
"ohash": "^2.0.11",
"pathe": "^2.0.3",
"pkg-types": "^2.1.0",
"sirv": "^3.0.1",
"std-env": "^3.8.1",
"ufo": "^1.5.4",
"unplugin": "^2.2.0",
"unstorage": "^1.15.0",
"valibot": "^1.0.0-rc.4"
},
"devDependencies": {
"@nuxt/devtools-kit": "^2.3.0",
"@nuxt/devtools-ui-kit": "^2.3.0",
"@nuxt/eslint-config": "^1.2.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/scripts": "workspace:*",
"@nuxt/test-utils": "3.17.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/typescript-estree": "^8.26.1",
"acorn-loose": "^8.4.0",
"bumpp": "^10.1.0",
"changelogen": "^0.6.1",
"eslint": "9.21.0",
"eslint-plugin-n": "^17.16.2",
"happy-dom": "^17.4.4",
"knitwork": "^1.2.0",
"nuxt": "catalog:",
"playwright-core": "^1.51.0",
"shiki": "2.5.0",
"typescript": "5.8.2",
"vitest": "^3.0.8",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.8"
},
"resolutions": {
"@nuxt/schema": "catalog:",
"@nuxt/scripts": "workspace:*",
"@unhead/vue": "2.0.0-rc.12",
"nuxt": "catalog:",
"typescript": "5.8.2",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"sharp",
"vue-demi"
]
}
}