-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 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
{
"name": "next-pipe",
"version": "1.1.3",
"description": "Provides a simple way to pipe data through a series of functions.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run build:esm && npm run build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "vitest run",
"coverage": "vitest run --coverage",
"fmt": "prettier --write .",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"files": [
"dist"
],
"keywords": [
"middleware",
"typescript",
"nextjs",
"pipe",
"compose",
"functional",
"functional-programming"
],
"author": "Toshimichi <[email protected]> (https://toshimichi.net/)",
"license": "MIT",
"homepage": "https://github.com/Toshimichi0915/next-pipe",
"bugs": {
"url": "https://github.com/Toshimichi0915/next-pipe/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:Toshimichi0915/next-pipe.git"
},
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.1.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@vitest/coverage-c8": "^0.31.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"iron-session": "^6.3.1",
"next-auth": "^4.22.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"semantic-release": "^21.0.2",
"superstruct": "^1.0.3",
"typescript": "^5.0.4",
"vitest": "^0.31.0",
"yup": "^1.1.1",
"zod": "^3.21.4"
}
}