forked from cloudflare/next-on-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 821 Bytes
/
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
{
"name": "next-on-pages-base-path",
"version": "0.2.0",
"bin": "./bin/index.js",
"scripts": {
"build": "npx esbuild --bundle --platform=node ./src/index.ts --external:esbuild --external:chokidar --outfile=./dist/index.js",
"publish": "npm run build && npx changeset publish"
},
"files": [
"./bin/index.js",
"./dist/index.js",
"./templates/"
],
"dependencies": {
"acorn": "^8.8.0",
"astring": "^1.8.3",
"chokidar": "^3.5.3",
"cookie": "^0.5.0",
"esbuild": "^0.15.3"
},
"peerDependencies": {
"vercel": "^28.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@cloudflare/workers-types": "^3.14.1",
"@types/cookie": "^0.5.1",
"p-limit": "^4.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vitest": "^0.24.3"
}
}