Files
pnpm/store/cafs/package.json
2025-12-30 21:49:41 +01:00

62 lines
1.6 KiB
JSON

{
"name": "@pnpm/store.cafs",
"version": "1000.1.1",
"description": "A content-addressable filesystem for the packages storage",
"keywords": [
"pnpm",
"pnpm10"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/store/cafs",
"homepage": "https://github.com/pnpm/pnpm/tree/main/store/cafs#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"compile": "tsc --build && pnpm run lint --fix",
"prepublishOnly": "pnpm run compile"
},
"dependencies": {
"@pnpm/fetcher-base": "workspace:*",
"@pnpm/graceful-fs": "workspace:*",
"@pnpm/store-controller-types": "workspace:*",
"@zkochan/rimraf": "catalog:",
"is-gzip": "catalog:",
"p-limit": "catalog:",
"rename-overwrite": "catalog:",
"ssri": "catalog:",
"strip-bom": "catalog:"
},
"devDependencies": {
"@pnpm/cafs-types": "workspace:*",
"@pnpm/store.cafs": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"@pnpm/types": "workspace:*",
"@types/is-gzip": "catalog:",
"@types/node": "catalog:",
"@types/ssri": "catalog:",
"symlink-dir": "catalog:",
"tempy": "catalog:"
},
"engines": {
"node": ">=18.12"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}