-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 1.72 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
{
"name": "svg-blur-up",
"version": "3.0.0",
"description": "A tool that generates image previews.",
"homepage": "https://github.com/vanruesc/blur-up",
"license": "Zlib",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"blur-up": "./dist/cli.js"
},
"keywords": [
"lazy",
"loading",
"preview",
"image",
"embed",
"svg",
"base64",
"data",
"uri"
],
"author": {
"name": "Raoul van Rüschen",
"email": "vanruesc@outlook.de"
},
"repository": {
"type": "git",
"url": "https://github.com/vanruesc/blur-up.git"
},
"bugs": {
"url": "https://github.com/vanruesc/blur-up/issues"
},
"files": [
"dist"
],
"engines": {
"node": ">= 0.18.0"
},
"ava": {
"failFast": true,
"files": [
"test/*.js"
]
},
"eslintConfig": {
"extends": "aether/typescript"
},
"scripts": {
"ava": "ava",
"build": "run-s build:*",
"build:js": "node esbuild",
"build:dts": "tsc -p tsconfig.d.json",
"clean": "del-cli dist test/generated",
"lint": "tsc --noemit && eslint src --fix",
"prepublishOnly": "npm test",
"test": "run-s lint clean build ava"
},
"dependencies": {
"glob": "10.x.x",
"sharp": "0.x.x",
"yargs": "17.x.x"
},
"devDependencies": {
"@types/glob": "8.x.x",
"@types/node": "20.x.x",
"@types/yargs": "17.x.x",
"@typescript-eslint/eslint-plugin": "6.x.x",
"@typescript-eslint/parser": "6.x.x",
"ava": "5.x.x",
"del-cli": "5.x.x",
"esbuild": "0.x.x",
"eslint": "8.x.x",
"eslint-config-aether": "1.x.x",
"npm-run-all": "4.x.x",
"tslib": "2.x.x",
"typescript": "5.x.x"
}
}