|
| 1 | +{ |
| 2 | + "name": "try-or-die", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "Try? Or die?", |
| 5 | + "license": "MIT", |
| 6 | + "author": "Bert De Block", |
| 7 | + "type": "module", |
| 8 | + "main": "index.js", |
| 9 | + "bin": { |
| 10 | + "try-or-die": "bin/try-or-die.js" |
| 11 | + }, |
| 12 | + "files": [ |
| 13 | + "bin/", |
| 14 | + "dist/" |
| 15 | + ], |
| 16 | + "scripts": { |
| 17 | + "build": "tsc --project tsconfig.json", |
| 18 | + "lint": "concurrently --group --prefix-colors auto \"npm:lint:*(!fix)\"", |
| 19 | + "lint:fix": "concurrently --group --prefix-colors auto \"npm:lint:*:fix\"", |
| 20 | + "lint:format": "prettier . --cache --check", |
| 21 | + "lint:format:fix": "prettier . --cache --write", |
| 22 | + "lint:js": "eslint . --cache", |
| 23 | + "lint:js:fix": "eslint . --fix", |
| 24 | + "lint:types": "tsc --noEmit", |
| 25 | + "prepack": "tsc --project tsconfig.json", |
| 26 | + "prepare": "pnpm build", |
| 27 | + "start": "pnpm build --watch", |
| 28 | + "test": "vitest", |
| 29 | + "test:coverage": "vitest run --coverage" |
| 30 | + }, |
| 31 | + "dependencies": { |
| 32 | + "chalk": "^5.3.0", |
| 33 | + "debug": "^4.3.4", |
| 34 | + "execa": "^8.0.1", |
| 35 | + "find-up": "^6.3.0", |
| 36 | + "flatten-anything": "^3.0.5", |
| 37 | + "fs-extra": "^11.1.1", |
| 38 | + "lodash.set": "^4.3.2", |
| 39 | + "temp-dir": "^3.0.0", |
| 40 | + "yargs": "^17.7.2" |
| 41 | + }, |
| 42 | + "devDependencies": { |
| 43 | + "@babel/core": "^7.22.17", |
| 44 | + "@babel/eslint-parser": "^7.22.15", |
| 45 | + "@types/debug": "^4.1.8", |
| 46 | + "@types/fs-extra": "^11.0.1", |
| 47 | + "@types/lodash.set": "^4.3.7", |
| 48 | + "@types/node": "^20.6.0", |
| 49 | + "@types/yargs": "^17.0.24", |
| 50 | + "@vitest/coverage-v8": "^0.34.4", |
| 51 | + "concurrently": "^8.2.1", |
| 52 | + "eslint": "^8.49.0", |
| 53 | + "eslint-plugin-n": "^16.0.2", |
| 54 | + "fixturify-project": "^6.0.0", |
| 55 | + "prettier": "^3.0.3", |
| 56 | + "type-fest": "^4.3.1", |
| 57 | + "typescript": "^5.2.2", |
| 58 | + "vitest": "^0.34.4" |
| 59 | + }, |
| 60 | + "packageManager": "pnpm@8.7.4", |
| 61 | + "volta": { |
| 62 | + "node": "18.17.1" |
| 63 | + } |
| 64 | +} |
0 commit comments