forked from block65/imgproxy-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "@seanghay/imgproxy",
"version": "1.1.0",
"description": "NodeJS pure ESM client library to generate imgproxy urls",
"keywords": [
"imgproxy",
"url",
"generation",
"client"
],
"homepage": "https://github.com/seanghay/imgproxy-node#readme",
"bugs": {
"url": "https://github.com/seanghay/imgproxy-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanghay/imgproxy-node.git"
},
"license": "MIT",
"author": "Koen Punt <[email protected]>",
"module": "./dist/main.mjs",
"main": "./dist/main.cjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.cjs",
"types": "./dist/main.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "unbuild",
"build": "unbuild",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:ci": "cross-env CI=true vitest --run",
"release": "bumpp --commit --push --tag"
},
"devDependencies": {
"bumpp": "^7.1.1",
"cross-env": "^7.0.3",
"unbuild": "^0.7.4",
"vitest": "^0.9.3"
}
}