chore: scaffold carousel package and tooling

This commit is contained in:
Ilia Mashkov
2026-07-01 07:24:35 +03:00
commit f1d6731417
11 changed files with 124 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
{
"name": "@ilia/carousel",
"version": "0.0.0",
"type": "module",
"sideEffects": ["*.css"],
"packageManager": "yarn@4.11.0",
"publishConfig": {
"registry": "https://git.allmy.work/api/packages/ilia/npm/"
},
"exports": {
".": "./dist/index.js",
"./dots": "./dist/dots.js",
"./autoplay": "./dist/autoplay.js",
"./carousel.css": "./src/carousel.css"
},
"files": ["dist", "src/carousel.css"],
"scripts": {
"build": "tsup",
"check": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"size": "size-limit"
},
"devDependencies": {
"@biomejs/biome": "^2",
"@playwright/test": "^1",
"@size-limit/preset-small-lib": "^11",
"@vitest/coverage-v8": "^2",
"jsdom": "^25",
"lefthook": "^1",
"size-limit": "^11",
"tsup": "^8",
"typescript": "^5",
"vitest": "^2"
}
}