Files
pnpm/workspace/state/package.json
2024-12-16 02:31:45 +01:00

52 lines
1.3 KiB
JSON

{
"name": "@pnpm/workspace.state",
"version": "1001.0.0",
"description": "Track the list of actual paths of workspace packages in a cache",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18.12"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"test": "pnpm run compile && pnpm run _test",
"_test": "jest",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/workspace/state",
"keywords": [
"pnpm10",
"pnpm",
"mtime"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/workspace/state#readme",
"funding": "https://opencollective.com/pnpm",
"dependencies": {
"@pnpm/catalogs.types": "workspace:*",
"@pnpm/config": "workspace:*",
"@pnpm/logger": "workspace:*",
"@pnpm/types": "workspace:*",
"ramda": "catalog:"
},
"devDependencies": {
"@pnpm/prepare": "workspace:*",
"@pnpm/workspace.state": "workspace:*",
"@types/ramda": "catalog:"
},
"exports": {
".": "./lib/index.js"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}