|
| 1 | +{ |
| 2 | + "name": "@simon_he/fetch-npm", |
| 3 | + "type": "module", |
| 4 | + "version": "0.0.1", |
| 5 | + "packageManager": "[email protected]", |
| 6 | + "description": "", |
| 7 | + "author": "Simon He", |
| 8 | + "license": "MIT", |
| 9 | + "funding": "https://github.com/sponsors/Simon-He95", |
| 10 | + "homepage": "https://github.com/Simon-He95/fetch-npm#readme", |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git+https://github.com/Simon-He95/fetch-npm.git" |
| 14 | + }, |
| 15 | + "bugs": "https://github.com/Simon-He95/fetch-npm/issues", |
| 16 | + "keywords": [], |
| 17 | + "sideEffects": false, |
| 18 | + "exports": { |
| 19 | + ".": { |
| 20 | + "types": "./dist/index.d.ts", |
| 21 | + "import": "./dist/index.js", |
| 22 | + "require": "./dist/index.cjs" |
| 23 | + } |
| 24 | + }, |
| 25 | + "main": "./dist/index.js", |
| 26 | + "module": "./dist/index.js", |
| 27 | + "types": "./dist/index.d.ts", |
| 28 | + "typesVersions": { |
| 29 | + "*": { |
| 30 | + "*": [ |
| 31 | + "./dist/*", |
| 32 | + "./dist/index.d.ts" |
| 33 | + ] |
| 34 | + } |
| 35 | + }, |
| 36 | + "bin": { |
| 37 | + "run": "./cli.mjs" |
| 38 | + }, |
| 39 | + "files": [ |
| 40 | + "dist" |
| 41 | + ], |
| 42 | + "scripts": { |
| 43 | + "build": "tsup ./src/index.ts --format esm --dts --clean --minify", |
| 44 | + "dev": "npm run build -- --watch src", |
| 45 | + "format": "prettier --write --cache .", |
| 46 | + "lint": "eslint . --cache", |
| 47 | + "lint:fix": "pnpm run lint --fix", |
| 48 | + "prepublishOnly": "nr build", |
| 49 | + "release": "bumpp && npm publish", |
| 50 | + "start": "esno src/index.ts", |
| 51 | + "test": "vitest", |
| 52 | + "typecheck": "tsc --noEmit" |
| 53 | + }, |
| 54 | + "devDependencies": { |
| 55 | + "@antfu/eslint-config": "^3.5.1", |
| 56 | + "@types/node": "^18.19.50", |
| 57 | + "bumpp": "^8.2.1", |
| 58 | + "eslint": "^9.10.0", |
| 59 | + "jiti": "^2.3.3", |
| 60 | + "lint-staged": "^13.3.0", |
| 61 | + "picocolors": "^1.1.0", |
| 62 | + "prettier": "^2.8.8", |
| 63 | + "rimraf": "^3.0.2", |
| 64 | + "tar": "^7.4.3", |
| 65 | + "tsup": "^6.7.0", |
| 66 | + "tsx": "^3.14.0", |
| 67 | + "typescript": "^4.9.5", |
| 68 | + "vitest": "^0.15.2" |
| 69 | + }, |
| 70 | + "lint-staged": { |
| 71 | + "*": [ |
| 72 | + "prettier --write --cache --ignore-unknown" |
| 73 | + ], |
| 74 | + "*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix" |
| 75 | + } |
| 76 | +} |
0 commit comments