|
| 1 | +{ |
| 2 | + "name": "@alexaegis/advent-of-code-2024-04", |
| 3 | + "description": "Advent of Code 2024 04 solutions", |
| 4 | + "version": "1.0.0", |
| 5 | + "license": "mit", |
| 6 | + "private": true, |
| 7 | + "archetype": { |
| 8 | + "platform": "node", |
| 9 | + "framework": "adventofcode", |
| 10 | + "language": "ts" |
| 11 | + }, |
| 12 | + "keywords": [ |
| 13 | + "advent-of-code", |
| 14 | + "javascript", |
| 15 | + "js", |
| 16 | + "managed-by-autotool", |
| 17 | + "ts", |
| 18 | + "typescript" |
| 19 | + ], |
| 20 | + "type": "module", |
| 21 | + "aoc": { |
| 22 | + "day": 3, |
| 23 | + "year": 2024 |
| 24 | + }, |
| 25 | + "scripts": { |
| 26 | + "lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --filter @alexaegis/advent-of-code-2024-04", |
| 27 | + "lint:depcheck_": "depcheck", |
| 28 | + "lint:es": "turbo run lint:es_ --concurrency 16 --filter @alexaegis/advent-of-code-2024-04", |
| 29 | + "lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .", |
| 30 | + "lint:format": "turbo run lint:format_ --concurrency 16 --filter @alexaegis/advent-of-code-2024-04", |
| 31 | + "lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .", |
| 32 | + "lint:md": "turbo run lint:md_ --concurrency 16 --filter @alexaegis/advent-of-code-2024-04", |
| 33 | + "lint:md_": "remark --frail --no-stdout --silently-ignore .", |
| 34 | + "lint:tsc": "turbo run lint:tsc_ --concurrency 16 --filter @alexaegis/advent-of-code-2024-04", |
| 35 | + "lint:tsc_": "tsc --noEmit", |
| 36 | + "test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/advent-of-code-2024-04", |
| 37 | + "test_": "vitest --passWithNoTests --coverage --run", |
| 38 | + "test:watch": "vitest --passWithNoTests --coverage", |
| 39 | + "all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --filter @alexaegis/advent-of-code-2024-04", |
| 40 | + "bench": "tsx src/bench.ts", |
| 41 | + "build": "turbo run build-lib_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/advent-of-code-2024-04", |
| 42 | + "build-lib_": "vite build", |
| 43 | + "format": "turbo run format_ --concurrency 16 --filter @alexaegis/advent-of-code-2024-04", |
| 44 | + "format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .", |
| 45 | + "p1": "RUN=1 NODE_NO_WARNINGS=1 tsx src/p1.ts", |
| 46 | + "p1:example": "RUN=1 NODE_NO_WARNINGS=1 RESOURCE=example.1.txt tsx src/p1.ts", |
| 47 | + "p2": "RUN=1 NODE_NO_WARNINGS=1 tsx src/p2.ts", |
| 48 | + "p2:example": "RUN=1 NODE_NO_WARNINGS=1 RESOURCE=example.2.txt tsx src/p2.ts" |
| 49 | + }, |
| 50 | + "exports": { |
| 51 | + "./bench": { |
| 52 | + "types": "./src/bench.ts", |
| 53 | + "import": "./dist/bench.js", |
| 54 | + "default": "./dist/bench.js" |
| 55 | + }, |
| 56 | + "./p1": { |
| 57 | + "types": "./src/p1.ts", |
| 58 | + "import": "./dist/p1.js", |
| 59 | + "default": "./dist/p1.js" |
| 60 | + }, |
| 61 | + "./p2": { |
| 62 | + "types": "./src/p2.ts", |
| 63 | + "import": "./dist/p2.js", |
| 64 | + "default": "./dist/p2.js" |
| 65 | + }, |
| 66 | + "./package.json": "./package.json", |
| 67 | + "./readme": "./readme.md" |
| 68 | + }, |
| 69 | + "dependencies": { |
| 70 | + "@alexaegis/advent-of-code-lib": "workspace:^" |
| 71 | + }, |
| 72 | + "devDependencies": { |
| 73 | + "@alexaegis/eslint-config-vitest": "^0.12.0", |
| 74 | + "@alexaegis/ts": "^0.12.0", |
| 75 | + "@alexaegis/vite": "^0.12.0", |
| 76 | + "@alexaegis/vitest": "^0.12.0", |
| 77 | + "@types/node": "^22.10.1", |
| 78 | + "benny": "^3.7.1", |
| 79 | + "vite": "^6.0.1", |
| 80 | + "vitest": "^2.1.6" |
| 81 | + } |
| 82 | +} |
0 commit comments