mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-18 23:27:09 -05:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@pnpm/store-path",
|
|
"version": "6.0.0",
|
|
"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/packages/store-path",
|
|
"keywords": [
|
|
"pnpm7",
|
|
"pnpm",
|
|
"store"
|
|
],
|
|
"engines": {
|
|
"node": ">=14.6"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/store-path#readme",
|
|
"dependencies": {
|
|
"@zkochan/rimraf": "^2.1.2",
|
|
"can-link": "^2.0.0",
|
|
"path-absolute": "^1.0.1",
|
|
"path-temp": "^2.0.0",
|
|
"root-link-target": "^3.1.0",
|
|
"touch": "3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/store-path": "workspace:*",
|
|
"@types/is-windows": "^1.0.0",
|
|
"@types/node": "^14.18.22",
|
|
"@types/rimraf": "^3.0.2",
|
|
"@types/touch": "^3.1.2",
|
|
"is-windows": "^1.0.2",
|
|
"rimraf": "^3.0.2"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|