mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-10 18:18:56 -04:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@pnpm/store.pkg-finder",
|
|
"version": "1000.0.0-0",
|
|
"description": "Read a package's file map from the content-addressable store",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/store/pkg-finder",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/store/pkg-finder#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": {
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"compile": "tsgo --build && pn lint --fix",
|
|
"prepublishOnly": "pn compile",
|
|
"test": "pn compile"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/deps.path": "workspace:*",
|
|
"@pnpm/fetching.directory-fetcher": "workspace:*",
|
|
"@pnpm/resolving.resolver-base": "workspace:*",
|
|
"@pnpm/store.cafs": "workspace:*",
|
|
"@pnpm/store.index": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/store.pkg-finder": "workspace:*"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.13"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|