-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
104 lines (104 loc) · 3.1 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
{
"name": "nuxt-booster",
"version": "3.1.10",
"description": "Nuxt Booster takes over the Lighthouse performance optimization of your generated website.",
"license": "MIT",
"author": "Stephan Gerbeth",
"contributors": [
{
"name": "Stephan Gerbeth",
"email": "[email protected]"
},
{
"name": "Thorn-Welf Walli",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/basics/nuxt-booster.git"
},
"type": "module",
"scripts": {
"prepack": "nuxt-module-build build",
"prepare": "husky",
"build": "nuxt build playground",
"dev": "nuxt dev playground",
"generate": "nuxt generate playground",
"preview": "nuxt preview",
"lint": "nuxt prepare playground && npm run lint:css && npm run lint:es",
"lint:es": "eslint --fix .",
"lint:css": "stylelint \"(src|playground)/**/*.vue\"",
"lint:report": "nuxt prepare playground && eslint -f json-relative -o ./eslint-report.json .",
"test": "npm run vitest:run",
"vitest:run": "nuxt generate test && vitest run",
"vitest:dev": "nuxt generate test && vitest dev",
"start": "npx serve playground/dist",
"start:generate": "npm run generate && npx serve playground/dist",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"dependencies": {
"@nuxt/image": "1.9.0",
"@nuxtjs/fontaine": "0.4.4",
"browserslist-useragent-regexp": "4.1.3",
"cheerio": "1.0.0",
"defu": "6.1.4",
"dom-serializer": "2.0.0",
"dynamic-class-list": "2.0.2",
"htmlparser2": "10.0.0",
"image-meta": "0.2.1",
"mime-types": "2.1.35",
"pathe": "2.0.2"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@fullhuman/postcss-purgecss": "7.0.2",
"@nuxt/eslint": "0.7.6",
"@nuxt/module-builder": "0.8.4",
"@nuxt/webpack-builder": "3.15.4",
"@types/node": "22.12.0",
"@types/vue": "2.0.0",
"commitlint": "19.6.1",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-formatter-json-relative": "0.1.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-security": "3.0.1",
"finalhandler": "1.3.1",
"get-port-please": "3.1.2",
"husky": "9.1.7",
"jsdom": "26.0.0",
"lint-staged": "15.4.3",
"markdown-it-inline-comments": "1.0.1",
"nuxt": "3.15.4",
"playwright": "1.50.0",
"postcss-functions": "4.0.2",
"postcss-html": "1.8.0",
"postcss-nesting": "13.0.1",
"postcss-preset-env": "10.1.3",
"prettier": "3.4.2",
"read-pkg": "9.0.1",
"serve-static": "1.16.2",
"stylelint-config-recess-order": "6.0.0",
"stylelint-config-standard": "37.0.0",
"vite-svg-loader": "5.1.0",
"vitepress": "1.6.3",
"vitest": "3.0.4",
"vue-semantic-structure": "1.0.0",
"wicg-inert": "3.1.3"
}
}