Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DScheglov committed Dec 25, 2023
1 parent c19ca14 commit f98c785
Showing 1 changed file with 47 additions and 14 deletions.
61 changes: 47 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
{
"name": "@cardellini/ts-result",
"version": "0.0.1",
"version": "0.0.2",
"description": "Useful type to model success and failure",
"scripts": {
"test": "jest",
"compile:cjs": "tsc --project tsconfig.cjs.json",
"compile": "rm -rf ./lib; npm run compile:cjs",
"lint": "eslint . --ext .ts"
},
"keywords": ["result", "either", "monad", "functor", "async", "io", "task", "rust"],
"keywords": [
"result",
"either",
"monad",
"functor",
"async",
"io",
"task",
"rust"
],
"author": "Dmytro Shchehlov <[email protected]>",
"repository": {
"type": "git",
Expand Down Expand Up @@ -86,18 +95,42 @@
},
"typesVersions": {
"*": {
"base": ["./lib/base.d.ts"],
"fn": ["./lib/fn/index.d.ts"],
"do": ["./lib/do.d.ts"],
"methods": ["./lib/methods.d.ts"],
"lists": ["./lib/lists.d.ts"],
"sync": ["./lib/sync.d.ts"],
"sync/do": ["./lib/do-gen.d.ts"],
"sync/methods": ["./lib/sync-methods.d.ts"],
"async": ["./lib/async.d.ts"],
"async/do": ["./lib/async-do-gen.d.ts"],
"async/methods": ["./lib/async-methods.d.ts"],
"*": ["./lib/*"]
"base": [
"./lib/base.d.ts"
],
"fn": [
"./lib/fn/index.d.ts"
],
"do": [
"./lib/do.d.ts"
],
"methods": [
"./lib/methods.d.ts"
],
"lists": [
"./lib/lists.d.ts"
],
"sync": [
"./lib/sync.d.ts"
],
"sync/do": [
"./lib/do-gen.d.ts"
],
"sync/methods": [
"./lib/sync-methods.d.ts"
],
"async": [
"./lib/async.d.ts"
],
"async/do": [
"./lib/async-do-gen.d.ts"
],
"async/methods": [
"./lib/async-methods.d.ts"
],
"*": [
"./lib/*"
]
}
}
}

0 comments on commit f98c785

Please sign in to comment.