|
3 | 3 | "publishConfig": { |
4 | 4 | "access": "public" |
5 | 5 | }, |
6 | | - "version": "2.2.2", |
| 6 | + "version": "2.3.0", |
7 | 7 | "description": "Download a specific release from github", |
8 | 8 | "type": "module", |
9 | 9 | "files": [ |
|
14 | 14 | "typings": "dist/src/index.d.ts", |
15 | 15 | "scripts": { |
16 | 16 | "build": "tsc --project tsconfig.json", |
17 | | - "build:watch": "yarn build --watch", |
| 17 | + "build:watch": "tsc --project tsconfig.json --watch", |
18 | 18 | "lint": "eslint --ignore-pattern .gitignore", |
19 | | - "lint:fix": "yarn lint --fix", |
20 | | - "setup": "yarn && yarn build", |
| 19 | + "lint:fix": "pnpm lint --fix", |
| 20 | + "setup": "pnpm install && pnpm build", |
21 | 21 | "test": "NODE_OPTIONS='--experimental-vm-modules' jest", |
22 | 22 | "test:cov": "NODE_OPTIONS='--experimental-vm-modules' jest --collectCoverage", |
23 | 23 | "test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage=false --notify --watch --onlyChanged", |
24 | 24 | "test:debug": "NODE_OPTIONS='--experimental-vm-modules' env DEBUG=\"${DEBUG:-*teraslice*}\" jest --detectOpenHandles --coverage=false --runInBand", |
25 | | - "check": "yarn run lint && yarn run test", |
| 25 | + "check": "pnpm run lint && pnpm run test", |
26 | 26 | "clean": "rimraf dist coverage", |
27 | | - "prepublishOnly": "yarn run clean && yarn run build" |
| 27 | + "prepublishOnly": "pnpm run clean && pnpm run build" |
28 | 28 | }, |
29 | 29 | "bin": "bin/fetch-github-release", |
30 | 30 | "repository": { |
|
49 | 49 | "yargs": "^18.0.0" |
50 | 50 | }, |
51 | 51 | "devDependencies": { |
| 52 | + "@jest/globals": "^30.3.0", |
52 | 53 | "@terascope/eslint-config": "^1.1.30", |
53 | 54 | "@types/jest": "^30.0.0", |
54 | 55 | "@types/multi-progress": "^2.0.6", |
55 | 56 | "@types/node": "^24.12.0", |
56 | 57 | "@types/stream-buffers": "^3.0.8", |
57 | 58 | "@types/tmp": "^0.2.6", |
| 59 | + "@types/yargs": "^17.0.35", |
58 | 60 | "eslint": "^9.39.4", |
59 | 61 | "jest": "^30.3.0", |
60 | 62 | "jest-extended": "^7.0.0", |
|
67 | 69 | "typescript": "^5.9.3" |
68 | 70 | }, |
69 | 71 | "engines": { |
70 | | - "node": ">=22.0.0" |
| 72 | + "node": ">=22.0.0", |
| 73 | + "pnpm": ">=10.32.1" |
71 | 74 | }, |
72 | | - "packageManager": "yarn@4.9.1" |
| 75 | + "packageManager": "pnpm@10.32.1" |
73 | 76 | } |
0 commit comments