Files
pnpm/store/store-path/package.json
2024-12-16 02:31:45 +01:00

59 lines
1.4 KiB
JSON

{
"name": "@pnpm/store-path",
"version": "1000.0.1",
"description": "Resolves the pnpm store path",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"prepublishOnly": "pnpm run compile",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/store/store-path",
"keywords": [
"pnpm10",
"pnpm",
"store"
],
"engines": {
"node": ">=18.12"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/store/store-path#readme",
"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": {
"@pnpm/store-path": "workspace:*",
"@types/is-windows": "catalog:",
"@types/node": "catalog:",
"@types/rimraf": "catalog:",
"@types/touch": "catalog:",
"is-windows": "catalog:",
"rimraf": "catalog:"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}