mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "@pnpm/server",
|
|
"version": "1001.0.11",
|
|
"description": "A pnpm installer server",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"server"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/store/server",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/store/server#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\" \"test/**/*.ts\"",
|
|
"_test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --detectOpenHandles",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/fetch": "workspace:*",
|
|
"@pnpm/store-controller-types": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"p-limit": "catalog:",
|
|
"promise-share": "catalog:",
|
|
"ramda": "catalog:",
|
|
"uuid": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/client": "workspace:*",
|
|
"@pnpm/fs.v8-file": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/package-requester": "workspace:*",
|
|
"@pnpm/package-store": "workspace:*",
|
|
"@pnpm/server": "workspace:*",
|
|
"@pnpm/store.cafs": "workspace:*",
|
|
"@types/ramda": "catalog:",
|
|
"@types/uuid": "catalog:",
|
|
"@zkochan/rimraf": "catalog:",
|
|
"get-port": "catalog:",
|
|
"is-port-reachable": "catalog:",
|
|
"node-fetch": "catalog:",
|
|
"tempy": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|