-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 3.4 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
{
"name": "@vheemstra/vite-plugin-imagemin-monorepo",
"version": "2.1.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"homepage": "https://github.com/vheemstra/vite-plugin-imagemin#readme",
"keywords": [
"vite",
"vite-plugin",
"imagemin",
"minify",
"compress",
"jpg",
"png",
"gif",
"svg",
"webp",
"avif"
],
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=packages/core",
"build": "npm run build --workspace=packages/core",
"format": "prettier --write",
"format:cache": "prettier --write --cache .",
"lint": "eslint",
"lint:cache": "eslint --cache .",
"build:test": "run-s build test",
"build:test:coverage": "run-s build test:coverage",
"build:test:view": "run-s build test:coverage serve:coverage",
"build:all": "run-s build playground:build",
"quick:test": "cross-env VITEST_SKIP_BUILDS=1 vitest run --no-coverage",
"test": "vitest run --no-coverage",
"test:coverage": "vitest run",
"serve:coverage": "serve --no-clipboard ./coverage/",
"test:view": "run-s test:coverage serve:coverage",
"test:dev": "vitest",
"test:dev:ui": "vitest --ui",
"test:dev:no-coverage": "vitest --no-coverage",
"playground:dev": "npm run dev --workspace=packages/playground",
"playground:build": "npm run build --workspace=packages/playground",
"playground:inspect": "npm run serve:inspect --workspace=packages/playground",
"playground:build:inspect": "run-s playground:build playground:inspect",
"playground:preview": "npm run preview --workspace=packages/playground",
"playground:preview:nobuild": "npm run preview:nobuild --workspace=packages/playground",
"bump:patch": "npm version patch -m \"Patch version %s\"",
"bump:minor": "npm version minor -m \"Minor version %s\"",
"bump:major": "npm version major -m \"Major version %s\"",
"preversion": "run-s lint build test && git add .",
"version": "cross-var npm version --no-git-tag-version $npm_package_version --workspace=packages/core && git add .",
"_version_new_": "expose-env npm version --no-git-tag-version %npm_package_version% --workspace=packages/core && git add .",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vheemstra/imagemin-avifenc": "^2.1.0",
"@vheemstra/imagemin-oxipng": "^1.0.0",
"@vitest/coverage-istanbul": "^1.6.0",
"@vitest/coverage-v8": "^1.6.0",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vitest-globals": "^1.5.0",
"expose-env": "^0.1.7",
"imagemin-gif2webp": "^3.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-svgo": "^11.0.1",
"imagemin-webp": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"serve": "^14.2.3",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vitest": "^1.6.0",
"vitest-github-actions-reporter": "^0.11.1"
},
"overrides": {
"semver-regex": "^3.1.3",
"trim-newlines": "^3.0.1",
"semver": "^7.5.2",
"json5": "^1.0.2",
"http-cache-semantics": "^4.1.1",
"got": "^11.8.3",
"eslint": "^9.5.0"
}
}