-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
{
"name": "@bitpatty/imgproxy-url-builder",
"version": "2.0.0-rc1",
"description": "A TypeScript helper library for building imgproxy URLs",
"author": "Matteias Collet <[email protected]>",
"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",
"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": "29.5.14",
"@types/node": "22.10.7",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"crypto-js": "4.2.0",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "5.2.3",
"npm-check-updates": "17.1.14",
"prettier": "3.4.2",
"rollup": "4.31.0",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typedoc": "0.27.6",
"typescript": "5.7.3"
}
}