-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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
{
"name": "@netlify/plugin-nextjs",
"version": "4.41.4",
"description": "Run Next.js seamlessly on Netlify",
"main": "index.js",
"files": [
"lib/**/*",
"src/templates/edge/*",
"src/templates/edge-shared/*",
"src/templates/vendor/*",
"index.js",
"manifest.yml"
],
"dependencies": {
"@netlify/blobs": "^2.2.0",
"@netlify/esbuild": "0.14.39",
"@netlify/functions": "^1.6.0",
"@netlify/ipx": "^1.4.6",
"@vercel/node-bridge": "^2.1.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"destr": "^1.1.1",
"execa": "^5.1.1",
"follow-redirects": "^1.15.2",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"merge-stream": "^2.0.0",
"moize": "^6.1.0",
"node-fetch": "^2.6.6",
"node-stream-zip": "^1.15.0",
"outdent": "^0.8.0",
"p-limit": "^3.1.0",
"pathe": "^0.3.0",
"pretty-bytes": "^5.6.0",
"regexp-tree": "^0.1.24",
"semver": "^7.3.5",
"slash": "^3.0.0",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@delucis/if-env": "^1.1.2",
"@netlify/build": "^29.36.3",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/merge-stream": "^1.1.2",
"@types/node": "^17.0.25",
"next": "^13.4.1",
"npm-run-all2": "^5.0.0",
"typescript": "^4.6.3"
},
"scripts": {
"prepublishOnly": "run-s clean build",
"publish:pull": "git pull",
"publish:install": "npm ci",
"publish:test": "cd .. && npm ci && npm test",
"clean": "rimraf lib dist-types",
"build": "run-s build:*",
"build:vendor": "rimraf src/templates/vendor && deno vendor src/templates/vendor.ts --output=src/templates/vendor && node patch-import-map.mjs && patch src/templates/vendor/deno.land/x/[email protected]/index.ts html_rewriter.patch",
"build:tsc": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netlify/next-runtime.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/netlify/next-runtime/issues"
},
"homepage": "https://github.com/netlify/next-runtime#readme",
"engines": {
"node": ">=12.0.0"
}
}