-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 2.42 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
{
"name": "unplugin-img-compress-repo",
"description": "🔥 Image compression plugin based on tinypng",
"private": false,
"type": "module",
"version": "1.4.1",
"packageManager": "pnpm@9.14.4",
"keywords": [
"webpack",
"rollup",
"compression-library",
"vite",
"esbuild",
"unplugin",
"compression-img"
],
"license": "MIT",
"homepage": "https://github.com/baiwusanyu-c/unplugin-img-compress#README",
"author": "baiwusanyu-c",
"repository": "https://github.com/baiwusanyu-c/unplugin-img-compress",
"bugs": "https://github.com/baiwusanyu-c/unplugin-img-compress/issues",
"scripts": {
"init": "pnpm i",
"lint:fix": "eslint --fix ./ --ext .vue,.js,.ts,.jsx,.tsx,.json ",
"dev": "pnpm run clean && pnpm run --filter @unplugin-img-compress/build dev",
"play:runtime-build": "pnpm run --filter @unplugin-img-compress/play runtime:build",
"play:runtime-dev": "pnpm run --filter @unplugin-img-compress/play runtime:dev",
"play:webpack-dev": "pnpm run --filter @unplugin-img-compress/play-webpack start",
"play:webpack-build": "pnpm run --filter @unplugin-img-compress/play-webpack build",
"build": "pnpm run clean && pnpm run --filter @unplugin-img-compress/build build",
"release": "bumpp package.json packages/*/package.json --commit --push --tag",
"clean": "rimraf dist && rimraf packages/unplugin-img-compress/dist",
"prepare": "npx simple-git-hooks",
"test": "pnpm run --filter unplugin-img-compress test",
"test:update": "pnpm run --filter unplugin-img-compress test test:update",
"test:coverage": "pnpm run --filter unplugin-img-compress test test:coverage",
"update:deps": "npx taze major -w && pnpm run init"
},
"devDependencies": {
"@baiwusanyu/eslint-config": "^1.0.16",
"@unplugin-img-compress/build": "workspace:*",
"@unplugin-img-compress/play-vite": "workspace:*",
"@unplugin-img-compress/play-webpack": "workspace:*",
"ansi-colors": "^4.1.3",
"bumpp": "^9.8.1",
"eslint": "8.32.0",
"lint-staged": "^15.2.10",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unplugin-img-compress": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node vertify-commit.js"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": [
"eslint ./ --fix"
]
},
"eslintConfig": {
"extends": [
"@baiwusanyu"
]
}
}