UNPKG

nochoices

Version:

Full featured implementation of options into typescript.

48 lines 1.2 kB
{ "name": "nochoices", "version": "1.1.5", "description": "Full featured implementation of options into typescript.", "repository": { "type": "git", "url": "https://github.com/hojarasca/nochoices" }, "main": "./dist/mod/index.js", "types": "dist/mod/index.d.ts", "exports": "./dist/mod/index.js", "type": "module", "keywords": [ "option", "optional", "maybe", "some", "none", "nullable" ], "author": "", "license": "ISC", "devDependencies": { "@changesets/cli": "^2.27.1", "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "chai": "^4.3.10", "esbuild": "^0.19.11", "eslint": "^8.56.0", "eslint-plugin-tsdoc": "^0.2.17", "mocha": "^10.2.0", "npm-run-all": "^4.1.5", "tsx": "^4.7.0", "typedoc": "^0.25.4", "typescript": "^5.3.3" }, "scripts": { "test": "mocha", "build:tsc": "tsc", "build:esbuild": "node esbuild.js", "build": "run-p build:tsc build:esbuild", "prepublish": "run-s test build", "lint": "eslint .", "gendocs": "pnpm typedoc --options typedoc.json" } }