@nguyenhuu/adventofcode
Version:
Advent of Code Runner
88 lines • 2.29 kB
JSON
{
"name": "@nguyenhuu/adventofcode",
"version": "1.1.5",
"description": "Advent of Code Runner",
"main": "dist/main.js",
"type": "module",
"repository": "git://github.com/nguyenhuuit/adventofcode-runner.git",
"engines": {
"node": ">=20"
},
"author": "Huu Nguyen <nguyenhuuit@yahoo.com>",
"license": "MIT",
"bin": {
"adventofcode": "./cli.js"
},
"files": [
"package.json",
"cli.js",
"dist/*"
],
"keywords": [
"adventofcode",
"runner",
"cli"
],
"dependencies": {
"@amplitude/analytics-node": "1.3.8",
"axios": "1.9.0",
"chalk": "5.4.1",
"chokidar": "4.0.3",
"cli-spinners": "3.2.0",
"commander": "14.0.0",
"dotenv": "16.5.0",
"enquirer": "2.4.1",
"ink": "5.2.1",
"ink-spinner": "5.0.0",
"pino": "9.7.0",
"pino-pretty": "10.3.1",
"react": "18.3.1",
"uuid": "11.1.0",
"zustand": "5.0.5"
},
"devDependencies": {
"@sindresorhus/tsconfig": "7.0.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "13.4.0",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/jest": "29.5.14",
"@types/react": "19.1.6",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"brace-expansion": ">=2.0.2",
"esbuild": "0.25.5",
"eslint": "9.28.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "30.0.0-beta.3",
"jsdom": "26.1.0",
"lint-staged": "15.5.2",
"prettier": "3.5.3",
"ts-jest": "29.3.4",
"tsx": "4.19.4",
"typescript": "5.8.3"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"scripts": {
"build": "node build.mjs",
"start": "npm run build && node dist/main.js",
"start:dev": "tsx src/main.tsx",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"test": "jest --detectOpenHandles",
"test:coverage": "jest --coverage --detectOpenHandles"
}
}