-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "@nuxtjs/partytown",
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "Daniel Roe <daniel@roe.dev>",
"url": "https://github.com/danielroe"
},
"exports": {
".": "./dist/module.mjs"
},
"type": "module",
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": ["./dist/types.d.mts"]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"prepack": "nuxt-module-build build",
"lint": "eslint .",
"test": "vitest run --coverage",
"release": "bumpp && npm publish"
},
"dependencies": {
"@nuxt/kit": "^4.0.0",
"@qwik.dev/partytown": "^0.11.0",
"knitwork": "^1.2.0",
"serve-static": "^2.0.0",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/eslint-config": "1.15.2",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.3.1",
"@nuxt/test-utils": "4.0.0",
"@types/serve-static": "2.2.0",
"@vitest/coverage-v8": "4.0.18",
"bumpp": "10.4.1",
"eslint": "10.0.3",
"nuxt": "4.3.1",
"typescript": "5.9.3",
"vitest": "4.0.18",
"vue": "3.5.30"
},
"resolutions": {
"@nuxt/schema": "4.3.1",
"@nuxtjs/partytown": "link:./"
},
"packageManager": "pnpm@10.32.0"
}