updeep/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2015-07-31 15:31:34 +00:00
{
2023-01-03 18:51:35 +00:00
"type": "module",
2023-01-11 18:05:37 +00:00
"name": "@yanick/updeep-remeda",
2024-02-27 19:24:29 +00:00
"version": "2.3.1",
2015-08-02 07:32:32 +00:00
"description": "Easily update nested frozen objects and arrays in a declarative and immutable manner.",
2023-03-22 21:14:45 +00:00
"homepage": "https://yanick.github.io/updeep-remeda",
2015-07-31 15:31:34 +00:00
"repository": {
"type": "git",
2023-03-22 21:14:45 +00:00
"url": "https://github.com/yanick/updeep-remeda"
2015-07-31 15:31:34 +00:00
},
2024-02-27 18:35:51 +00:00
"authors": [
"Aaron Jensen",
"Yanick Champoux"
],
2015-07-31 15:53:25 +00:00
"files": [
2024-02-27 19:22:26 +00:00
"esm",
"src"
2015-07-31 15:53:25 +00:00
],
2015-07-31 15:31:34 +00:00
"keywords": [
"immutable",
"frozen",
"functional",
"declarative"
],
2023-01-03 18:51:35 +00:00
"source": "./src/index.ts",
"types": "./esm/index.d.ts",
2023-01-10 17:29:30 +00:00
"exports": {
".": {
"types": "./esm/index.d.ts",
"import": "./esm/index.js"
}
},
2020-04-02 18:40:18 +00:00
"license": "MIT",
"bugs": {
2023-01-10 18:26:04 +00:00
"url": "https://github.com/yanick/updeep-remeda/issues"
2020-04-02 18:40:18 +00:00
},
2024-02-27 18:35:51 +00:00
"scripts": {},
"dependencies": {
2025-01-29 22:17:49 +00:00
"remeda": "^2.20.0"
},
2015-07-31 15:53:25 +00:00
"devDependencies": {
2025-01-29 22:30:14 +00:00
"@changesets/cli": "^2.27.12",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@vitest/ui": "^3.0.4",
"dtslint": "^4.2.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-expect-type": "^0.6.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.4.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"updeep": "^1.2.4",
"vitest": "^3.0.4"
2020-04-02 14:18:34 +00:00
}
2015-07-31 15:31:34 +00:00
}