mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-28 12:01:37 -04:00
84 lines
2.2 KiB
JSON
84 lines
2.2 KiB
JSON
{
|
|
"name": "@pnpm/package-store",
|
|
"version": "1004.0.0",
|
|
"description": "A storage for packages",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"cache",
|
|
"central storage",
|
|
"global store",
|
|
"maching store",
|
|
"packages",
|
|
"storage",
|
|
"store"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/store/package-store",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/store/package-store#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"
|
|
],
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"start": "tsgo --watch",
|
|
"fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix",
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"pretest": "rimraf .tmp",
|
|
"_test": "pnpm pretest && cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsgo --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/create-cafs-store": "workspace:*",
|
|
"@pnpm/crypto.hash": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/fetcher-base": "workspace:*",
|
|
"@pnpm/fs.msgpack-file": "workspace:*",
|
|
"@pnpm/hooks.types": "workspace:*",
|
|
"@pnpm/package-requester": "workspace:*",
|
|
"@pnpm/resolver-base": "workspace:*",
|
|
"@pnpm/store-controller-types": "workspace:*",
|
|
"@pnpm/store.cafs": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@zkochan/rimraf": "catalog:",
|
|
"is-subdir": "catalog:",
|
|
"ramda": "catalog:",
|
|
"ssri": "catalog:",
|
|
"symlink-dir": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "catalog:",
|
|
"@pnpm/worker": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/client": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/package-store": "workspace:*",
|
|
"@pnpm/prepare": "workspace:*",
|
|
"@types/ramda": "catalog:",
|
|
"@types/ssri": "catalog:",
|
|
"tempy": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.13"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|