-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "with-next-encrypt",
"version": "1.0.4",
"description": "nextjs encrypt props server side",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"src/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "cross-env NODE_ENV=production && tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint": "cross-env NODE_ENV=production eslint src",
"_prepublishOnly": "npm test",
"_version": "npm run format && git add -A src",
"_postversion": "git push && git push --tags",
"clean": "rimraf lib node_modules coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugejile/with-next-encrypt.git"
},
"keywords": [
"nextjs",
"encrypt",
"NEXT_DATA"
],
"author": "hugejile",
"license": "MIT",
"bugs": {
"url": "https://github.com/hugejile/with-next-encrypt/issues"
},
"homepage": "https://github.com/hugejile/with-next-encrypt#readme",
"dependencies": {
"crypto": "^1.0.1"
},
"devDependencies": {
"@types/node": "^18.8.5",
"@types/react": "^18.0.21",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"next": "^12.3.1",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"peerDependencies": {
"crypto": "^1.0.1"
}
}