mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "@pnpm/store-path",
|
|
"version": "1000.0.5",
|
|
"description": "Resolves the pnpm store path",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"store"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/store/store-path",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/store/store-path#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"type": "module",
|
|
"main": "lib/index.js",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "pnpm run compile",
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"_test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/constants": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@zkochan/rimraf": "catalog:",
|
|
"can-link": "catalog:",
|
|
"path-absolute": "catalog:",
|
|
"path-temp": "catalog:",
|
|
"root-link-target": "catalog:",
|
|
"touch": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "catalog:",
|
|
"@pnpm/store-path": "workspace:*",
|
|
"@types/is-windows": "catalog:",
|
|
"@types/node": "catalog:",
|
|
"@types/rimraf": "catalog:",
|
|
"@types/touch": "catalog:",
|
|
"is-windows": "catalog:",
|
|
"rimraf": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
},
|
|
"typings": "lib/index.d.ts"
|
|
}
|