mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-18 03:48:35 -05:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@pnpm/tarball-resolver",
|
|
"version": "1001.0.0",
|
|
"description": "Resolver for tarball dependencies",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix",
|
|
"_test": "jest",
|
|
"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/resolving/tarball-resolver",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/resolving/tarball-resolver#readme",
|
|
"dependencies": {
|
|
"@pnpm/fetching-types": "workspace:*",
|
|
"@pnpm/resolver-base": "workspace:*"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"keywords": [
|
|
"pnpm10"
|
|
],
|
|
"devDependencies": {
|
|
"@pnpm/fetch": "workspace:*",
|
|
"@pnpm/tarball-resolver": "workspace:*"
|
|
},
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|