-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.72 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
67
68
69
70
71
72
73
{
"name": "@bitty/maybe",
"version": "0.2.0",
"description": "Maybe ",
"cdn": "./dist/Maybe.umd.min.js",
"main": "./dist/Maybe.js",
"types": "./types/main.d.ts",
"unpkg": "./dist/Maybe.umd.min.js",
"module": "./dist/Maybe.esm.js",
"jsdelivr": "./dist/Maybe.umd.min.js",
"umd:main": "./dist/Maybe.umd.js",
"exports": {
".": [
{
"import": "./dist/Maybe.mjs",
"require": "./dist/Maybe.js",
"default": "./dist/Maybe.js"
},
"./dist/Maybe.js"
]
},
"files": [
"dist/",
"types/"
],
"scripts": {
"build": "pnpm run build:transpile && pnpm run build:bundle",
"build:transpile": "tsc --project ./tsconfig.build.json",
"build:bundle": "rollup --config rollup.config.js",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VitorLuizC/maybe.git"
},
"keywords": [
"maybe",
"maybe-type",
"maybe-monad",
"optional",
"optional-type",
"optional-typing",
"functional-programming",
"functional",
"fp",
"type-safety",
"type-safe",
"typescript",
"bili",
"ava"
],
"author": {
"url": "https://vitorluizc.github.io/",
"name": "Vitor Luiz Cavalcanti",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VitorLuizC/maybe/issues"
},
"homepage": "https://github.com/VitorLuizC/maybe#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@bitty/falsy": "workspace:*",
"@bitty/nullish": "workspace:*",
"@bitty/predicate": "workspace:*"
}
}