-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.33 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
{
"name": "@flyyer/proxy",
"version": "2.1.2",
"description": "Helper function to proxy images via Flyyer CDN network to bypass CORS",
"keywords": [
"flyyer",
"image",
"proxy",
"typescript"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/proxy.esm.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"sideEffects": false,
"author": "Patricio López Juri <patricio@flyyer.io>",
"repository": {
"type": "git",
"url": "https://github.com/useflyyer/proxy.git"
},
"license": "MIT",
"private": false,
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@flyyer/eslint-config": "^3.0.0",
"babel-jest": "^27.4.6",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^25.3.4",
"husky": "^4.3",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}