Files
pnpm/crypto/polyfill/package.json
2025-03-10 03:15:12 +01:00

42 lines
966 B
JSON

{
"name": "@pnpm/crypto.polyfill",
"version": "1000.1.0",
"description": "Polyfill for functions in the crypto library",
"keywords": [
"pnpm",
"pnpm10",
"crypto"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/blob/main/crypto/polyfill",
"homepage": "https://github.com/pnpm/pnpm/blob/main/crypto/polyfill#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"test": "pnpm run compile",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"devDependencies": {
"@pnpm/crypto.polyfill": "workspace:*"
},
"engines": {
"node": ">=18.12"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}