-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.92 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
{
"name": "@devexteam/dvx-cli",
"version": "3.0.2",
"description": "CLI that encapsulates utilities for image processing and assets in frontend development.",
"license": "MIT",
"main": "bin/index.js",
"bin": {
"dvx": "bin/index.js"
},
"imports": {
"#@/*": "./*"
},
"type": "module",
"scripts": {
"prebuild": "node --run build:clean",
"build": "swc ./src/ --out-dir ./bin/ --strip-leading-paths && replace-in-file \"/#@/src//g\" \"#@/bin/\" \"./bin/**/*.js\" --isRegex",
"build:clean": "rm -Rf ./bin",
"test": "pnpm run test:unit && pnpm run test:features",
"test:features": "true",
"test:unit": "node --import @swc-node/register/esm-register --test ./tests/**/*.test.ts",
"package:update": "ncu -u && pnpm i && pnpm audit --fix"
},
"keywords": [
"Devexteam",
"cli",
"minify",
"tools",
"frontend"
],
"files": [
"bin",
"assets/icons",
"README.md"
],
"author": "Samuel R. <[email protected]>",
"private": false,
"devDependencies": {
"@swc-node/register": "1.10.9",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.5",
"@types/htmlhint": "1.1.5",
"@types/imagemin": "9.0.0",
"@types/imagemin-jpegtran": "5.0.4",
"@types/imagemin-mozjpeg": "8.0.4",
"@types/imagemin-svgo": "10.0.5",
"@types/imagemin-zopfli": "7.0.4",
"@types/node": "22.1.0",
"@types/node-notifier": "8.0.5",
"@types/shelljs": "0.8.15",
"@types/yargs": "17.0.32",
"replace-in-file": "8.1.0",
"ts-node": "10.9.2",
"type-fest": "4.23.0",
"typescript": "5.5.4"
},
"dependencies": {
"htmlhint": "1.1.4",
"htmlhint-stylish": "1.0.3",
"imagemin": "9.0.0",
"imagemin-giflossy": "5.1.10",
"imagemin-jpegtran": "7.0.0",
"imagemin-mozjpeg": "10.0.0",
"imagemin-pngquant": "10.0.0",
"imagemin-webp": "8.0.0",
"imagemin-zopfli": "7.0.0",
"is-svg": "5.0.1",
"node-notifier": "10.0.1",
"sharp": "0.33.4",
"shelljs": "0.8.5",
"svgo": "3.3.2",
"yargs": "17.7.2"
},
"engines": {
"node": ">=22.5.1",
"npm": ">=10.8.2",
"pnpm": ">=9.6.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/devlegacy/dvx-cli.git"
},
"bugs": {
"url": "https://github.com/devlegacy/dvx-cli/issues"
},
"homepage": "https://github.com/devlegacy/dvx-cli#readme",
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
"pnpm": {
"overrides": {
"braces@<2.3.1": ">=2.3.1",
"tunnel-agent@<0.6.0": ">=0.6.0",
"got@<11.8.5": ">=11.8.5",
"decompress@<4.2.1": ">=4.2.1",
"http-cache-semantics@<4.1.1": ">=4.1.1",
"semver-regex@<3.1.3": ">=3.1.3",
"semver-regex@<3.1.4": ">=3.1.4",
"trim-newlines@<3.0.1": ">=3.0.1",
"semver@<5.7.2": ">=5.7.2",
"braces@<3.0.3": ">=3.0.3"
}
}
}