-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.96 KB
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
{
"name": "@bitpatty/imgproxy-url-builder",
"version": "2.1.0",
"description": "A TypeScript helper library for building imgproxy URLs",
"author": "Matteias Collet <matteias.collet@pm.me>",
"contributors": [
{
"name": "Coo van Leeuwen",
"url": "https://github.com/c00"
},
{
"name": "Ushakov Fedor",
"url": "https://github.com/ushakovfserg"
}
],
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest --verbose --coverage",
"docs": "typedoc && node scripts/populate-readme.cjs",
"deps:force-upgrade": "npm-check-updates -u && rm -rf node_modules && rm -f package-lock.json && npm i"
},
"keywords": [
"imgproxy",
"imgproxyjs",
"browser",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/BitPatty/imgproxy-url-builder.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BitPatty/imgproxy-url-builder/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/BitPatty/imgproxy-url-builder#readme",
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "25.1.0",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"crypto-js": "4.2.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.12.1",
"eslint-plugin-prettier": "5.5.5",
"npm-check-updates": "19.3.2",
"prettier": "3.8.1",
"rollup": "4.57.1",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typedoc": "0.28.16",
"typescript": "5.9.3"
}
}