mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-25 23:38:23 -05:00
63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
{
|
|
"name": "@pnpm/server",
|
|
"version": "13.0.2",
|
|
"description": "A pnpm installer server",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=14.6"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
"_test": "jest --detectOpenHandles",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/server",
|
|
"keywords": [
|
|
"pnpm7",
|
|
"pnpm",
|
|
"server"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/server#readme",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/client": "workspace:*",
|
|
"@pnpm/logger": "^4.0.0",
|
|
"@pnpm/package-requester": "workspace:*",
|
|
"@pnpm/package-store": "workspace:*",
|
|
"@pnpm/server": "workspace:*",
|
|
"@types/mz": "^2.7.4",
|
|
"@types/uuid": "^8.3.4",
|
|
"@zkochan/rimraf": "^2.1.2",
|
|
"get-port": "^5.1.1",
|
|
"is-port-reachable": "3.0.0",
|
|
"load-json-file": "^6.2.0",
|
|
"node-fetch": "3.0.0-beta.9",
|
|
"tempy": "^1.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/fetch": "workspace:*",
|
|
"@pnpm/store-controller-types": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"p-limit": "^3.1.0",
|
|
"promise-share": "^1.0.0",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|