-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
106 lines (106 loc) · 3.17 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
105
106
{
"name": "nuxt-booster",
"version": "3.1.6",
"description": "Nuxt Booster takes over the Lighthouse performance optimization of your generated website.",
"license": "MIT",
"author": "Stephan Gerbeth",
"contributors": [
{
"name": "Stephan Gerbeth",
"email": "stephan.gerbeth@gmail.com"
},
{
"name": "Thorn-Welf Walli",
"email": "lammpee@gmail.com"
}
],
"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.8.1",
"@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": "9.1.0",
"image-meta": "0.2.1",
"mime-types": "2.1.35",
"node-cache": "5.1.2",
"pathe": "1.1.2",
"sort-css-media-queries": "2.4.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@fullhuman/postcss-purgecss": "7.0.2",
"@nuxt/eslint": "0.7.2",
"@nuxt/module-builder": "0.8.4",
"@nuxt/webpack-builder": "3.14.1592",
"@types/node": "22.10.1",
"@types/vue": "2.0.0",
"commitlint": "19.6.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-json-relative": "0.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-security": "3.0.1",
"finalhandler": "1.3.1",
"get-port-please": "3.1.2",
"husky": "9.1.7",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"markdown-it-inline-comments": "1.0.1",
"nuxt": "3.14.1592",
"playwright": "1.49.0",
"postcss-functions": "4.0.2",
"postcss-html": "1.7.0",
"postcss-nesting": "13.0.1",
"postcss-preset-env": "10.1.1",
"prettier": "3.4.1",
"read-pkg": "9.0.1",
"serve-static": "1.16.2",
"stylelint-config-recess-order": "5.1.1",
"stylelint-config-standard": "36.0.1",
"vite-svg-loader": "5.1.0",
"vitepress": "1.5.0",
"vitest": "2.1.6",
"vue-semantic-structure": "1.0.0",
"wicg-inert": "3.1.3"
}
}