added doga

This commit is contained in:
szabomarton
2025-02-25 09:55:29 +01:00
parent 5174ab4cc4
commit 13254e5623
1149 changed files with 80161 additions and 0 deletions

53
25_02_24/node_modules/dot-prop/package.json generated vendored Normal file
View File

@@ -0,0 +1,53 @@
{
"name": "dot-prop",
"version": "9.0.0",
"description": "Get, set, or delete a property from a nested object using a dot path",
"license": "MIT",
"repository": "sindresorhus/dot-prop",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava && tsc",
"bench": "node benchmark.js"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"object",
"prop",
"property",
"dot",
"path",
"get",
"set",
"delete",
"access",
"notation",
"dotty"
],
"dependencies": {
"type-fest": "^4.18.2"
},
"devDependencies": {
"ava": "^6.1.3",
"benchmark": "^2.1.4",
"expect-type": "^0.19.0",
"typescript": "^5.4.5",
"xo": "^0.58.0"
}
}