-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.25 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
89
90
{
"name": "@zapal/payload-blurhash-plugin",
"description": "",
"version": "0.0.1",
"homepage:": "https://www.zapal.tech",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"email": "hello@zapal.tech",
"name": "Zapal",
"url": "https://www.zapal.tech"
},
"maintainers": [
{
"name": "Zapal",
"email": "hello@zapal.tech",
"url": "https://www.zapal.tech"
}
],
"repository": {
"type": "git",
"url": "https://github.com/zapal-tech/payload-blurhash-plugin.git"
},
"license": "MIT",
"keywords": [
"zapal",
"zapal-tech",
"payload",
"cms",
"plugin",
"typescript",
"react",
"nextjs",
"blur",
"blurhash",
"image",
"placeholder"
],
"scripts": {
"build": "tsc",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"test": "cross-env PAYLOAD_CONFIG_PATH=src/payload.config.ts jest --detectOpenHandles --forceExit",
"prettier": "prettier --write \"dev/**/*.{js,jsx,ts,tsx}\"",
"clean": "rimraf dist && rimraf dev/package-lock.json",
"prepublishOnly": "npm run clean && npm run build",
"postinstall": "husky install"
},
"files": [
"dist",
"*.js",
"*.d.ts"
],
"dependencies": {
"blurhash": "^2.0.5"
},
"peerDependencies": {
"payload": "^1.7.2 || ^2.0.0",
"sharp": "^0.31 || ^0.32"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@swc/jest": "^0.2.29",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/express": "^4.17.20",
"@types/node": "^20.8.7",
"@types/react": "^18.2.29",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.1",
"payload": "^2.0.10",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"sharp": "^0.32.6",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0"
}
}