-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "@mep-agency/next-http",
"version": "1.0.0-alpha2",
"private": false,
"description": "A set of tools to implement common HTTP patterns with NextJS",
"author": "Marco Lipparini <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mep-agency/next-http.git"
},
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prepack": "yarn build",
"build": "rm -rf ./dist && rollup -c",
"watch": "rm -rf ./dist && rollup -cw",
"format": "prettier --write \"**/*.{ts,md,scss,css,js}\"",
"lint": "prettier --check \"**/*.{ts,md,scss,css,js}\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"next": "^14.1.3",
"prettier": "^2.8.8",
"rollup": "^4.12.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.4.2"
},
"peerDependencies": {
"next": "^14.1.3"
}
}