-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 825 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
{
"name": "supabase-nextjs-image-api",
"version": "1.2.0",
"description": "",
"main": "dist/esm/index.mjs",
"scripts": {
"build": "npx tsc",
"build-cjs": "npx tsc --project tsconfig.commonjs.json",
"postbuild": "npx uglify-js dist/esm/index.js -m -c -o dist/esm/index.min.mjs",
"postbuild-cjs": "npx uglify-js dist/cjs/index.js -m -c -o dist/cjs/index.min.cjs",
"prepublish": "npm run build && npm run build-cjs"
},
"exports": {
".": {
"require": "./dist/cjs/index.min.cjs",
"import": "./dist/esm/index.min.mjs"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"peerDependencies": {
"@supabase/supabase-js": "^2.26.0",
"next": ">12.0.0",
"sharp": "^0.32.1"
},
"devDependencies": {
"typescript": "^5.1.6",
"uglify-js": "^3.17.4"
}
}