mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-02 03:02:49 -05:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@pnpm/fs.msgpack-file",
|
|
"version": "1100.0.0-0",
|
|
"description": "Msgpack serialization utilities for pnpm cache files",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/fs/msgpack-file",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/fs/msgpack-file#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": {
|
|
"compile": "tsgo --build && pnpm run lint --fix",
|
|
"watch": "tsgo --build --watch",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"_test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/graceful-fs": "workspace:*",
|
|
"msgpackr": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/fs.msgpack-file": "workspace:*",
|
|
"tempy": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|