Files
pnpm/object/property-path/package.json
2025-11-13 15:44:27 +01:00

47 lines
1.2 KiB
JSON

{
"name": "@pnpm/object.property-path",
"version": "1000.0.1",
"description": "Basic library to manipulate object property path which includes dots and subscriptions",
"keywords": [
"pnpm",
"pnpm11",
"object.property-path"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/object/property-path",
"homepage": "https://github.com/pnpm/pnpm/tree/main/object/property-path#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"compile": "tsc --build && pnpm run lint --fix",
"_test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@pnpm/error": "workspace:*"
},
"devDependencies": {
"@pnpm/object.property-path": "workspace:*"
},
"engines": {
"node": ">=20.19"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}