UNPKG

perlica

Version:

> [!WARNING] > 🚧 Work in progress!

74 lines • 1.9 kB
{ "name": "perlica", "version": "0.2.0-rc.3", "license": "MIT", "type": "module", "author": { "name": "Falldot", "url": "https://github.com/Falldot", "email": "fe.offep@gmail.com" }, "main": "./dist/cjs/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/cjs/index.cjs" }, "./Result": { "types": "./dist/Result.d.ts", "import": "./dist/Result.js", "require": "./dist/cjs/Result.cjs" }, "./Option": { "types": "./dist/Option.d.ts", "import": "./dist/Option.js", "require": "./dist/cjs/Option.cjs" }, "./Future": { "types": "./dist/Future.d.ts", "import": "./dist/Future.js", "require": "./dist/cjs/Future.cjs" }, "./Iterator": { "types": "./dist/Iterator.d.ts", "import": "./dist/Iterator.js", "require": "./dist/cjs/Iterator.cjs" } }, "repository": { "type": "git", "url": "https://github.com/perlicajs/perlica" }, "bugs": "https://github.com/perlicajs/perlica/issues", "homepage": "https://github.com/perlicajs/perlica", "keywords": [ "bun", "nodejs", "typescript", "typeclass", "result", "option", "future", "type-inference" ], "scripts": { "test": "bun test ./test/*.test.ts", "test:watch": "bun test ./test/*.test.ts --watch ", "lint": "eslint src test", "lint:fix": "eslint src test --fix", "dist": "bun build.ts", "release": "bun dist && bun lint:fix && bun test && npm publish" }, "devDependencies": { "@stylistic/eslint-plugin": "^2.12.1", "@types/bun": "^1.1.14", "eslint": "^9.17.0", "eslint-plugin-align-import": "^1.0.0", "tsup": "^8.3.5", "typescript": "~5.5.4", "typescript-eslint": "^7.18.0" } }