-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.2 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.2 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
{
"name": "nuxt-scripts-monorepo",
"type": "module",
"version": "1.0.0-beta.32",
"private": true,
"packageManager": "pnpm@10.32.1",
"description": "Load third-party scripts with better performance, privacy and DX in Nuxt Apps.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/scripts.git"
},
"scripts": {
"build": "pnpm generate:types && pnpm --filter @nuxt/scripts build && pnpm devtools:build",
"generate:types": "pnpm dlx tsx scripts/generate-registry-types.ts",
"prepack": "pnpm generate:types && pnpm --filter @nuxt/scripts build && pnpm devtools:build",
"devtools": "nuxt dev packages/devtools-app --port 3030",
"devtools:build": "nuxt generate packages/devtools-app",
"dev": "nuxt dev playground",
"dev:ssl": "nuxt dev playground --https",
"dev:prepare": "pnpm -r dev:prepare && nuxt prepare playground && pnpm prepare:fixtures",
"prepare:fixtures": "nuxt prepare test/fixtures/basic && nuxt prepare test/fixtures/cdn && nuxt prepare test/fixtures/extend-registry && nuxt prepare test/fixtures/partytown && nuxt prepare test/fixtures/first-party",
"typecheck": "nuxt typecheck",
"release": "pnpm build && bumpp --output=CHANGELOG.md",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:run": "vitest run",
"test:e2e-dev": "vitest run --project e2e-dev",
"test:types": "vitest run --project typecheck"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@nuxt/scripts": "workspace:*",
"@nuxt/test-utils": "catalog:",
"@nuxtjs/partytown": "catalog:",
"@paypal/paypal-js": "catalog:",
"@types/google.maps": "catalog:",
"@types/jest-image-snapshot": "catalog:",
"@types/youtube": "catalog:",
"@vue/test-utils": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"eslint-plugin-harlanzw": "catalog:",
"happy-dom": "catalog:",
"jest-image-snapshot": "catalog:",
"nuxt": "catalog:",
"playwright-core": "catalog:",
"posthog-js": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
"vue-tsc": "catalog:"
},
"resolutions": {
"@nuxt/scripts": "workspace:*"
}
}