-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "@nuxtjs/partytown",
"version": "1.5.0",
"license": "MIT",
"author": {
"name": "Daniel Roe <[email protected]>",
"url": "https://github.com/danielroe"
},
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"type": "module",
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"prepack": "nuxt-module-build build",
"lint": "eslint --fix . && prettier --write '**/*.{js,ts,md,vue}'",
"test": "vitest run --coverage",
"release": "bumpp && npm publish"
},
"dependencies": {
"@builder.io/partytown": "^0.10.2",
"@nuxt/kit": "^3.12.4",
"knitwork": "^1.1.0",
"serve-static": "^1.15.0",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/eslint-config": "0.6.1",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.14.159",
"@nuxt/test-utils": "3.14.4",
"@types/serve-static": "1.15.7",
"@vitest/coverage-v8": "2.1.4",
"bumpp": "9.8.1",
"eslint": "9.14.0",
"nuxt": "3.14.159",
"prettier": "3.3.3",
"typescript": "5.6.3",
"vitest": "2.1.4",
"vue": "3.5.12"
},
"resolutions": {
"@nuxt/schema": "3.14.159",
"@nuxtjs/partytown": "link:./"
},
"packageManager": "[email protected]"
}