-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.09 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
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
{
"name": "nuxt-web-bundle",
"version": "0.4.0",
"license": "MIT",
"description": "Generate web bundles with Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/danielroe/nuxt-web-bundle.git"
},
"keywords": [
"nuxt",
"module",
"nuxt-module",
"web-bundle",
"experiment",
"performance"
],
"author": {
"name": "Daniel Roe <daniel@roe.dev>",
"url": "https://github.com/danielroe"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "pnpm nuxt-module-build build --stub && pnpm nuxt-module-build prepare && nuxt prepare playground",
"docs:dev": "nuxt dev docs",
"docs:build": "nuxt generate docs",
"lint": "pnpm eslint",
"prepack": "pnpm build",
"prepare": "husky install",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && pnpm publish",
"test": "vitest run --coverage",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^4.0.0",
"chalk": "^6.0.0",
"globby": "^16.0.0",
"mime": "^4.0.1",
"pathe": "^2.0.0",
"ufo": "^1.5.3",
"wbn": "^0.0.9"
},
"devDependencies": {
"@nuxt/eslint-config": "1.16.0",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.0.3",
"@nuxt/test-utils": "4.0.3",
"@types/mime": "4.0.0",
"@types/node": "24.12.4",
"@vitest/coverage-v8": "4.1.10",
"bumpp": "12.2.0",
"eslint": "10.8.0",
"expect-type": "1.1.0",
"get-port-please": "3.1.2",
"husky": "9.1.6",
"lint-staged": "17.0.5",
"nuxt": "4.0.3",
"typescript": "5.6.3",
"vitest": "4.1.10",
"vue": "3.5.20"
},
"lintStaged": {
"*.{js,mjs,cjs,ts,tsx,vue}": "pnpm lint:eslint --fix"
},
"packageManager": "pnpm@11.1.2"
}