55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "radash",
|
|
"version": "12.1.1",
|
|
"description": "Functional utility library - modern, simple, typed, powerful",
|
|
"main": "dist/cjs/index.cjs",
|
|
"module": "dist/esm/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/esm/index.mjs",
|
|
"require": "./dist/cjs/index.cjs"
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"repository": {
|
|
"url": "https://github.com/rayepps/radash"
|
|
},
|
|
"author": "rayepps",
|
|
"private": false,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "jest --coverage",
|
|
"check": "yarn lint && yarn test && yarn build",
|
|
"build": "yarn tsc --noEmit && yarn rollup -c",
|
|
"docs:install": "yarn && yarn add --dev next@12.3.4",
|
|
"docs:build": "chiller build --ci",
|
|
"lint": "tslint -p tsconfig.json",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"format:check": "prettier --check \"src/**/*.ts\" --ignore-unknown"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "^10.0.1",
|
|
"@types/chai": "^4.3.3",
|
|
"@types/jest": "^28.1.1",
|
|
"chai": "^4.3.6",
|
|
"chiller": "^1.0.0-rc.30",
|
|
"esbuild": "^0.16.3",
|
|
"jest": "^28.1.3",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-organize-imports": "^3.0.3",
|
|
"rollup": "^3.2.5",
|
|
"rollup-plugin-dts": "^5.0.0",
|
|
"rollup-plugin-esbuild": "^5.0.0",
|
|
"rollup-plugin-node-externals": "^5.0.2",
|
|
"ts-jest": "^28.0.8",
|
|
"tslint": "^6.0.0",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.18.0"
|
|
}
|
|
}
|