updeep/package.json

57 lines
1.3 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",
2023-04-10 14:59:27 +00:00
"version": "2.2.0",
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
},
2023-01-10 18:26:04 +00:00
"authors": [ "Aaron Jensen", "Yanick Champoux" ],
2015-07-31 15:53:25 +00:00
"files": [
2023-01-10 18:26:04 +00:00
"esm"
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
},
2015-07-31 15:53:25 +00:00
"scripts": {
},
"dependencies": {
2023-01-03 19:37:30 +00:00
"remeda": "^1.3.0"
},
2015-07-31 15:53:25 +00:00
"devDependencies": {
2024-02-27 17:00:33 +00:00
"@changesets/cli": "^2.27.1",
2021-08-10 15:11:34 +00:00
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
2023-01-03 18:51:35 +00:00
"@vitest/ui": "^0.26.3",
2021-08-10 15:11:34 +00:00
"dtslint": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-expect-type": "*",
"eslint-plugin-import": "*",
"eslint-plugin-prettier": "*",
"prettier": "*",
2023-01-10 17:29:30 +00:00
"typedoc": "^0.23.23",
2023-01-03 18:51:35 +00:00
"typescript": "^4.9.4",
2023-01-10 17:29:30 +00:00
"updeep": "^1.2.1",
2023-01-03 18:51:35 +00:00
"vitest": "^0.26.3"
2020-04-02 14:18:34 +00:00
}
2015-07-31 15:31:34 +00:00
}