Files
carousel/package.json
T
Ilia Mashkov 6b79e1120b
CI / verify (pull_request) Successful in 29s
CI / e2e (pull_request) Successful in 1m20s
CI / publish (pull_request) Has been skipped
ci: pin playwright to 1.61.1 matching runner image
Floating "^1" resolved to 1.61.1 while the e2e container was pinned
to v1.59.0-jammy, so its browser builds were missing at launch. Pin the
dep exact and bump the image so the two versions move together.
2026-07-01 09:17:42 +03:00

45 lines
1015 B
JSON

{
"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.61.1",
"@size-limit/preset-small-lib": "^11",
"@vitest/coverage-v8": "^2",
"jsdom": "^25",
"lefthook": "^1",
"size-limit": "^11",
"tsup": "^8",
"typescript": "^5",
"vitest": "^2"
}
}