Files
scrollsmith/package.json
2026-02-21 22:19:21 -05:00

30 lines
754 B
JSON

{
"name": "scrollsmith",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"test:unit": "vitest run --exclude '**/integration/**'",
"test:coverage": "vitest run --coverage --exclude '**/integration/**'",
"test:integration": "vitest run --config vitest.integration.config.js",
"lint": "eslint .",
"start": "node index.js"
},
"author": "",
"license": "SEE LICENSE IN README.md",
"description": "",
"dependencies": {
"dotenv": "^17.2.1",
"puppeteer": "^24.17.1",
"sharp": "^0.34.3"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"globals": "^17.0.0",
"vitest": "^4.0.18"
}
}