-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.46 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.46 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@railway-ts/pipelines",
"version": "0.1.29",
"description": "Railway-oriented pipelines for TypeScript: a lightweight fp-style Result/Option and schema layer for handling errors and validating boundaries.",
"type": "module",
"exports": {
"./option": {
"types": "./dist/option/index.d.ts",
"import": "./dist/option/index.mjs",
"require": "./dist/option/index.cjs"
},
"./result": {
"types": "./dist/result/index.d.ts",
"import": "./dist/result/index.mjs",
"require": "./dist/result/index.cjs"
},
"./composition": {
"types": "./dist/composition/index.d.ts",
"import": "./dist/composition/index.mjs",
"require": "./dist/composition/index.cjs"
},
"./schema": {
"types": "./dist/schema/index.d.ts",
"import": "./dist/schema/index.mjs",
"require": "./dist/schema/index.cjs"
}
},
"files": [
"dist",
"docs",
"README.md"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "bunx tsup",
"build:watch": "bunx tsup --watch",
"dev": "bunx tsup --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:coverage:lcov": "mkdir -p coverage && bun test --coverage --coverage-reporter=lcov",
"test:bail": "bun test --bail",
"test:fast": "bun test --bail --timeout=1000",
"test:pattern": "bun test --test-name-pattern",
"test:only": "bun test --only",
"test:reporter": "bun test --reporter=junit --reporter-outfile=junit.xml",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint . --fix",
"format": "bunx prettier --write .",
"format:check": "bunx prettier --check .",
"typecheck": "bunx tsc --noEmit",
"size": "bunx size-limit",
"prepublishOnly": "bun run typecheck && bun run lint && bun run test && bun run build && bun run size",
"check": "bun run typecheck && bun run lint && bun run test"
},
"size-limit": [
{
"path": "dist/option/index.mjs",
"limit": "2 kB"
},
{
"path": "dist/result/index.mjs",
"limit": "4 kB"
},
{
"path": "dist/composition/index.mjs",
"limit": "2 kB"
},
{
"path": "dist/schema/index.mjs",
"limit": "10 kB"
}
],
"keywords": [
"railway",
"railway-oriented",
"pipeline",
"pipelines",
"error-handling",
"result",
"option",
"functional-programming",
"fp-ts",
"effect-ts",
"composition",
"pipe",
"flow",
"typescript",
"schema-validation",
"validation",
"runtime-validation"
],
"repository": "github:sakobu/railway-ts-pipelines",
"homepage": "https://github.com/sakobu/railway-ts-pipelines#readme",
"bugs": {
"url": "https://github.com/sakobu/railway-ts-pipelines/issues"
},
"author": "Sarkis Melkonian",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "^6.0.0",
"@eslint/js": "^10.0.1",
"@size-limit/preset-small-lib": "^12.1.0",
"@types/bun": "1.3.12",
"eslint": "^10.2.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"size-limit": "^12.1.0",
"tsup": "^8.5.1",
"typescript-eslint": "^8.58.2"
},
"peerDependencies": {
"typescript": ">=5.0"
}
}