-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "k-img-helper",
"version": "1.1.1",
"main": "dist/index.js",
"author": "kostayne",
"license": "MIT",
"private": false,
"type": "module",
"repository": {
"url": "https://github.com/Kostayne/k-img-helper",
"type": "git"
},
"keywords": [
"cli",
"img",
"image",
"optimize",
"optimization",
"convert",
"resize",
"webp",
"web"
],
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.4.1",
"file-type": "^18.0.0",
"glob": "^8.0.3",
"jsonschema": "^1.4.1",
"puppeteer": "^19.2.2",
"reflect-metadata": "^0.1.13",
"sharp": "^0.31.2",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.9",
"@types/sharp": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"bin": {
"k-img-helper": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"build-run": "npm run build && node dist/index.js",
"dev": "ts-node ./src/index.ts",
"clear": "ts-node dev_utils/clear_example.ts",
"restore": "ts-node dev_utils/restore_example.ts",
"lint": "eslint --fix --ext .ts .",
"test": "jest",
"bump": "npm version --no-git-tag-version",
"prepublishOnly": "npm run test && npm run build"
}
}