39 lines
1010 B
JSON
39 lines
1010 B
JSON
{
|
|
"name": "next-crypto",
|
|
"version": "1.0.8",
|
|
"description": "A simple encryption module for Next.JS edge runtime.",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ilyahahaha/next_crypto.git"
|
|
},
|
|
"author": "Ilya Kuchmenko <42113015+ilyahahaha@users.noreply.github.com>",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"encrypt",
|
|
"decrypt",
|
|
"encryption",
|
|
"decryption",
|
|
"nextjs"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/ilyahahaha/next_crypto/issues"
|
|
},
|
|
"homepage": "https://github.com/ilyahahaha/next_crypto",
|
|
"devDependencies": {
|
|
"eslint": "^8.50.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-plugin-import": "^2.28.1",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"husky": "^8.0.3",
|
|
"prettier": "^3.0.3",
|
|
"prettier-plugin-organize-imports": "^3.2.3"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"format": "prettier --write --ignore-unknown .",
|
|
"lint": "npx eslint ."
|
|
}
|
|
}
|