This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.08 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
{
"name": "@exill-suarl/batch-blur-images",
"private": false,
"version": "2.0.0",
"description": "A helper library to mass blur all images in the given directory.",
"type": "module",
"repository": "https://github.com/exill-suarl/batch-blur-images.git",
"license": "MIT",
"keywords": [
"image",
"blur"
],
"engines": {
"node": ">= 16.13 <17"
},
"files": [
"build"
],
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"ts-node": "ts-node-esm ./src",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint ./**/*.ts --max-warnings 0",
"lint:fix": "eslint ./**/*.ts --fix",
"typecheck": "tsc --noEmit",
"clean": "rm -rf build node_modules/.cache",
"test": "ava",
"docs": "typedoc --entryPoints src/index.ts",
"dev": "npm run clean && tsc --build --watch",
"build": "tsc",
"release-it": "dotenv release-it --",
"release": "npm run clean && npm run build && npm run release-it && npm run clean",
"dotenv:login": "npx dotenv-vault new && npx dotenv-vault login",
"dotenv:pull": "npx dotenv-vault pull",
"dotenv:push": "npx dotenv-vault push"
},
"release-it": {
"github": {
"release": true,
"tokenRef": "RELEASEIT_GH_TOKEN"
},
"npm": {
"publish": true
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.7.6",
"@types/sharp": "^0.30.5",
"@types/uuid": "^8.3.4",
"ava": "^4.3.1",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"dotenv-cli": "^6.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"mkdirp": "^1.0.4",
"prettier": "^2.7.1",
"release-it": "^15.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typescript": "^4.7.4",
"uuid": "^9.0.0"
},
"dependencies": {
"is-image": "^3.1.0",
"sharp": "^0.31.0"
}
}