-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 KB
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
{
"name": "@deessejs/fp",
"version": "3.0.0",
"private": true,
"type": "module",
"description": "Monorepo for @deessejs/fp - Type-safe error handling for TypeScript",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"clean": "turbo clean",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@eslint/js": "^9.0.0",
"eslint": "^10.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-unicorn": "^64.0.0",
"husky": "^9.0.0",
"prettier": "^3.0.0",
"turbo": "^2.9.5",
"typescript-eslint": "^8.58.1"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20"
},
"changesets": {
"baseBranch": "main",
"changelog": false,
"commit": false,
"fixed": [
"@deessejs/fp"
],
"linked": [],
"access": "restricted"
},
"repository": {
"type": "git",
"url": "https://github.com/nesalia-inc/fp.git"
},
"keywords": [
"typescript",
"functional-programming",
"error-handling",
"monad"
],
"license": "MIT",
"dependencies": {
"zod": "^4.3.6"
}
}