-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.07 KB
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
{
"author": "Amazon Web Services",
"name": "@aws-amplify/adapter-nextjs",
"version": "1.7.3",
"description": "The adapter for the supporting of using Amplify APIs in Next.js.",
"peerDependencies": {
"aws-amplify": "^6.17.0",
"next": ">=13.5.0 <17.0.0"
},
"dependencies": {
"aws-jwt-verify": "^4.0.1"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"aws-amplify": "6.17.0",
"jest-fetch-mock": "3.0.3",
"next": ">= 13.5.0 <17.0.0"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/aws/aws-amplify/issues"
},
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"./api": {
"types": "./dist/esm/api/index.d.ts",
"import": "./dist/esm/api/index.mjs",
"require": "./dist/cjs/api/index.js"
},
"./data": {
"types": "./dist/esm/api/index.d.ts",
"import": "./dist/esm/api/index.mjs",
"require": "./dist/cjs/api/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/cjs",
"dist/esm",
"src",
"api",
"data"
],
"homepage": "https://docs.amplify.aws/",
"license": "Apache-2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"typings": "./dist/esm/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "npm run clean && npm run build:esm-cjs",
"build-with-test": "npm test && npm run build",
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
"build:watch": "npm run build:esm-cjs -- --watch",
"clean": "npm run clean:size && rimraf dist",
"clean:size": "rimraf dual-publish-tmp tmp*",
"format": "echo \"Not implemented\"",
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage",
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 90.31"
},
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-js.git",
"directory": "packages/adapter-nextjs"
}
}