d1b7740878
typescript(option): typescript(option): Instead of defining my own NominalType now I use the Brand type from typescript(option): utility types. Signed-off-by: prescientmoon <git@moonythm.dev>
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@adrielus/option",
|
|
"version": "0.0.0-development",
|
|
"description": "Typescript version of fsharps Option module",
|
|
"main": "dist/bundle.cjs.js",
|
|
"module": "dist/index.esm.js",
|
|
"typings": "dist/index.esm.d.ts",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "rollup -c rollup.config.ts"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"typescript",
|
|
"fsharp",
|
|
"option",
|
|
"maybe",
|
|
"nullable"
|
|
],
|
|
"sideEffects": false,
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^11.0.0",
|
|
"@rollup/plugin-node-resolve": "^6.0.0",
|
|
"@types/node": "^12.12.21",
|
|
"@wessberg/rollup-plugin-ts": "^1.1.83",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^1.27.14",
|
|
"rollup-plugin-terser": "^5.1.3",
|
|
"semantic-release": "^15.14.0",
|
|
"typescript": "^3.7.4",
|
|
"utility-types": "^3.10.0"
|
|
},
|
|
"author": "Matei Adriel",
|
|
"license": "SEE LICENSE IN LICENSE"
|
|
}
|